1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
.. _testing:
Installing tests dependencies and running tests
==================================================
To run the tests, extra Python dependencies are needed:
- Flake8_
- tox_
- pytest_
- coverage_
To install them from ``sbws`` ::
pip install .[dev] && pip install .[test]
To run the tests::
tox
.. _Flake8: https://flake8.readthedocs.io/
.. _pytest: https://docs.pytest.org/
.. _tox: https://tox.readthedocs.io
.. _Coverage: https://coverage.readthedocs.io/
|