You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
913 B
51 lines
913 B
4 years ago
|
Coverage Requirements
|
||
4 years ago
|
---------------------
|
||
4 years ago
|
|
||
|
100% coverage is required for the ``master`` branch.
|
||
|
|
||
|
See `current coverage report <coverage/index.html>`_.
|
||
|
|
||
|
.. csv-table:: Lines of Code
|
||
4 years ago
|
:file: ../_data/cloc.csv
|
||
4 years ago
|
|
||
|
Set Up for Testing
|
||
4 years ago
|
------------------
|
||
4 years ago
|
|
||
|
Install requirements:
|
||
|
|
||
|
.. code-block:: bash
|
||
|
|
||
|
pip install tests/requirements.pip
|
||
|
|
||
|
Running Tests
|
||
4 years ago
|
.............
|
||
4 years ago
|
|
||
|
.. tip::
|
||
|
You may use the ``tests`` target of the ``Makefile`` to run tests with coverage:
|
||
|
|
||
|
``make tests;``
|
||
|
|
||
|
To run unit tests:
|
||
|
|
||
|
.. code-block:: bash
|
||
|
|
||
|
python -m pytest;
|
||
|
|
||
|
Run a specific test:
|
||
|
|
||
|
.. code-block:: bash
|
||
|
|
||
|
python -m pytest tests/units/path/to/test.py
|
||
|
|
||
|
To allow output from print statements within a test method, add the ``-s`` switch:
|
||
|
|
||
|
.. code-block:: bash
|
||
|
|
||
|
python -m pytest -s tests/units/path/to/test.py
|
||
|
|
||
|
Reference
|
||
4 years ago
|
---------
|
||
4 years ago
|
|
||
|
- `coverage <https://coverage.readthedocs.io/en/v4.5.x/>`_
|
||
|
- `pytest <https://pytest.org>`_
|