Testing and coverage#

The following command runs all tests and creates a html report in a folder named htmlcov (the settings are governed by the .coveragerc file):

python -m pytest --cov-report=html --cov-config=.coveragerc --cov=sigmaepsilon.solid.fourier

Alternatively, you can use Poetry to test the package:

poetry run pytest --cov-report=html --cov-config=.coveragerc --cov=sigmaepsilon.solid.fourier