This repository has been archived by the owner on Apr 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.cfg
30 lines (26 loc) · 1.48 KB
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# encoding: utf-8
# __author__ = "Dimitrios Karkalousos"
[aliases]
test = pytest
[options.data_files]
. = requirements/requirements.txt
# durations=0 will display all tests execution time, sorted in ascending order starting from from the slowest one.
# -vv will also display tests with duration = 0.00s
[tool:pytest]
addopts = --verbose --pyargs --durations=0
testpaths = tests
norecursedirs = mridc docs scripts tools *.egg .* _darcs build CVS dist venv {arch}
markers =
unit: marks unit test, i.e. testing a single, well isolated functionality (deselect with '-m "not unit"')
integration: marks test checking the elements when integrated into subsystems (deselect with '-m "not integration"')
system: marks test working at the highest integration level (deselect with '-m "not system"')
acceptance: marks test checking whether the developed product/model passes the user defined acceptance criteria (deselect with '-m "not acceptance"')
docs: mark tests related to documentation (deselect with '-m "not docs"')
skipduringci: marks tests that are skipped ci as they are addressed by Jenkins jobs but should be run to test user setups
pleasefixme: marks tests that are broken and need fixing
torch_tts: marks tests that are to be run when "torch_tts" is installed but not all mridc packages
[isort]
known_localfolder = mridc, tests
sections = FUTURE,STDLIB,THIRDPARTY,LOCALFOLDER
default_section = THIRDPARTY
skip = setup.py, docs/source/conf.py