As a newcomer to python, any suggestions are welcome.
I used https://docs.python.org/3/tutorial/venv.html when creating this library, so probably best to do the same.
After activating your virtual environment, you can then run pip install -r dev_requirements.txt
To run unit tests:
python3 -m unittest discover -s tests/
To check unit-test code coverage:
coverage run --source=rugby_rankings -m unittest discover -s tests/
coverage report -m
This project uses PEP8 standards.
To run pylint on this project:
pylint --rcfile=pylintrc rugby_rankings