1[pytest]
2addopts =
3    # run in parallel - requires pytest-xdist
4    -n auto
5
6    # show coverage - requires pytest-cov
7    --cov=./
8
9    # show lines missing coverage
10    --cov-report term-missing
11
12    # verbose output
13    -vv
14
15filterwarnings =
16    # See https://docs.python.org/3/library/warnings.html#the-warnings-filter
17    ignore::DeprecationWarning:.*statsmodels.*:480
18    ignore::RuntimeWarning:.*eemeter.*features.*
19