Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 580 Bytes

DEVELOPERS.md

File metadata and controls

24 lines (17 loc) · 580 Bytes

How to run the testsuite

Jens is shipped with a bunch of functional tests which live in jens/test. Make sure that all the run-time dependencies declared in requirements.txt are installed before running them. The tests can also be run using pytest.

Running the tests with a human-readable output

$ python -m unittest -v

Just a single test

$ python -m unittest jens.test.test_update.UpdateTest.test_base -v

And keeping the sandbox in disk

$ JENS_TEST_KEEP_SANDBOX=1 python -m unittest jens.test.test_update.UpdateTest.test_base -v