Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 537 Bytes

README.md

File metadata and controls

37 lines (25 loc) · 537 Bytes

Integration tests

This dir contains integration tests, the aim is to test the Command Line Interface and its output from a pure user point of view.

Installation

See also Contributing.

cd test
virtualenv --python=python3 venv
source venv/bin/activate
pip install -r requirements.txt

Running tests

To run all the tests:

pytest

To run specific modules:

pytest test_lib.py

To run very specific test functions:

pytest test_lib.py::test_list