Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 921 Bytes

File metadata and controls

37 lines (28 loc) · 921 Bytes

🧪 Test

To run tests, run the following command:

# Install python test dependencies:
pip install -r ./requirements/requirements.test.txt

# Run tests:
python -m pytest -sv -o log_cli=true
# Or use the test script:
./scripts/test.sh -l -v -c

Pytest

# Install pytest:
pip install -U pytest pytest-cov pytest-xdist pytest-benchmark

# Run tests:
python -m pytest

# Pytest help:
python -m pytest --help

References