Skip to content

Latest commit

 

History

History
48 lines (38 loc) · 773 Bytes

README.md

File metadata and controls

48 lines (38 loc) · 773 Bytes

Running Tests

The tests are designed to be run on non-Raspi hardware.

On your testing machine you'll have to install:

# general dependencies
pip3 install -r requirements.txt

# test suite dependencies
pip3 install -r tests/requirements.txt

Then make the seedsigner python module visible/importable to the tests by installing it:

pip3 install -e .

Run the whole test suite:

pytest

Run a specific test file:

pytest tests/test_this_file.py

Run a specific test:

pytest tests/test_this_file.py::test_this_specific_test

Test Coverage

Run tests and generate test coverage

coverage run -m pytest

Show the resulting test coverage details:

coverage report

Generate the html overview:

coverage html