1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
[nosetests]
where = ./ltfatpy
with-xunit = 1
xunit-file = ./build/nosetests.xml
with-coverage = 1
cover-package = ltfatpy
cover-erase = 1
cover-html = 1
cover-html-dir = ../build/htmlcov
[tool:pytest]
# Specifies a minimal pytest version required for running tests.
minversion = 2.6
# Specifies the options
addopts = --cov-report=html
--cov-report=term-missing
--cov=ltfatpy
# Set the directory basename patterns to avoid when recursing for test discovery.
norecursedirs = .git bin build cmake-modules ltfat_C_kernel sandboxes .settings
[options]
packages = find:
[options.packages.find]
where = .
|