Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 366 Bytes

CONTRIBUTING.md

File metadata and controls

21 lines (14 loc) · 366 Bytes

Contributing

Running Test

  • Run all tests (except integration test). See coverage report afterwards by opening htmlcov/index.html
bash scripts/tests.sh
  • To run integration test:
pytest -m integration
  • To run all tests + integration tests (skipping those where program is not installed)
pytest -m 'not not_integration'