Skip to content
This repository has been archived by the owner on Dec 7, 2023. It is now read-only.

Latest commit

 

History

History
24 lines (14 loc) · 652 Bytes

TESTING.md

File metadata and controls

24 lines (14 loc) · 652 Bytes

Set up your virtual environments as in the README.md.

Install pytest into your virtualenv:

$ pip install pytest

Run all tests with:

$ py.test tests

Use -s to view output from print statements (normally suppressed by py.test)

$ py.test -s tests

You can run a subset of tests with something like:

$ py.test tests/test_classgroup.py

There are text-based tests implemented in tests/test_cmds.py that use input in tests/pot/. You can add easily add more tests of the command-line in here. If the output of the tool changes, you can easily repairs these tests using something like

$ REPAIR_FAILURES=1 py.test tests/test_cmds.py