Skip to content

Commit efdaf95

Browse files
committed
remove tox setup
1 parent 7623dc8 commit efdaf95

File tree

6 files changed

+11
-85
lines changed

6 files changed

+11
-85
lines changed

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,3 @@
1212

1313
# exported data
1414
*.csv
15-
16-
# testing
17-
.tox*

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,13 @@
22

33
All notable changes to this project will be documented in this file.
44

5-
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [unreleased]
9+
### Removed
10+
- Removed tox test setup, relying on `pytest` in CI pipeline instead.
11+
812
## [1.1.1] - 2024-12-25
913
### Added
1014
- Increased test coverage

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -109,12 +109,12 @@ Scheduled events:
109109

110110
## Testing
111111

112-
Software testing uses `pytest`, relying upon `poetry` and `tox`.<br>
113-
To run all tests, across multiple python versions:
112+
Testing of this library relies on `pytest`.
113+
Tests are split into unit tests (`tests/unit`) and integration tests (`tests/integration`).
114114

115-
```bash
116-
poetry run tox
117-
```
115+
To run all tests, use: `poetry run pytest`
116+
117+
Note that the unit tests are executed automatically in the CI pipeline (see `.github/workflows/pytest.yml`).
118118

119119
## Long-term Roadmap
120120

poetry.lock

Lines changed: 1 addition & 66 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ pre-commit = "^4.0.1"
2626
ruff = "0.8.3" # keep in sync with .pre-commit-config.yaml
2727
# testing
2828
pytest = "^7.4.3"
29-
tox = "^4.11.4"
3029
# stubs
3130
types-pytz = "^2024.2"
3231
types-requests = "^2.32"

tox.ini

Lines changed: 0 additions & 9 deletions
This file was deleted.

0 commit comments

Comments
 (0)