1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
[pytest]
addopts = --doctest-glob='*.rst' --ignore='setup.py' --ignore='manual_runner.py' --ignore='make_test_stubs.py'
norecursedirs = .cache .git htmlcov notebooks dist .cache .git htmlcov notebooks dist build *.egg-info .tox surfaces prof benchmarks dev dist _build htmlcov __pycache__
doctest_optionflags= NORMALIZE_WHITESPACE
markers =
slow: slow tests
thermo: relies on the thermo library, for integration testing
online: needs internet
mpmath: needs mpmath to check results against a higher-precision result
fuzz: test not relevant to normal development, but can reveal bugs or provide certainty the results are correct
numba : numba
scipy : Needs scipy to work
numpy : Needs numpy to work
f2py : Needs f2py to work
pytz : Needs pytz to work
|