1
0

Compare commits

...

2 Commits

Author SHA1 Message Date
f94ff770c7 🤖 Bumped version to 0.1.11
All checks were successful
Build Python Container / Package-Container (push) Successful in 43s
Package Python / Package (push) Successful in 28s
Run Python tests (through Pytest) / Test (push) Successful in 25s
Verify Python project can be installed, loaded and have version checked / Test (push) Successful in 23s
This commit was automatically generated by a script: https://gitfub.space/Jmaa/repo-manager
2025-03-16 23:59:56 +01:00
3c4d51b61b 🤖 Repository layout updated to latest version
This commit was automatically generated by a script: https://gitfub.space/Jmaa/repo-manager
2025-03-15 21:34:18 +01:00
2 changed files with 19 additions and 1 deletions

View File

@ -41,6 +41,24 @@ Full list of requirements:
Feel free to submit pull requests. Please follow the [Code Conventions](CONVENTIONS.md) when doing so.
### Testing
Testing requires the [pytest](https://docs.pytest.org/en/stable/) library.
Run tests with the following command:
```sh
pytest test
```
Test coverage can be run using the [`pytest-cov`](https://pypi.org/project/pytest-cov/) extension:
```sh
pytest --cov=package_tracking test
```
## License
```

View File

@ -1 +1 @@
__version__ = '0.1.10'
__version__ = '0.1.11'