Skip to content

Testing

Local testing

Local testing requires the test group packages to be installed.

Flake8

  • Checks for syntax errors
    poetry run flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
    

Pytest

  • Checks if the package can be imported without errors
    poetry run pytest tests/
    

GitHub CI/CD