We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8fd3cd commit a770a98Copy full SHA for a770a98
1 file changed
tox.ini
@@ -12,17 +12,24 @@ deps =
12
-rrequirements.txt
13
-rrequirements.dev.txt
14
15
-commands =
16
- {envpython} -m pytest
17
-
18
19
20
[testenv:unit]
21
description = Running UNIT tests in the corresponding environment
+#commands =
+# {envpython} -m pytest tests/unit
22
commands =
23
-# {envpython} -m pytest tests/unit
24
- {envpython} -m coverage run -m pytest tests/unit
25
- {envpython} -m coverage xml
+ {envpython} -m coverage run -m pytest tests/unit \
+ --cov=ted_sws \
+ --cov-report=html \
+ --cov-report=term \
+ --junitxml=junit_report.xml \
26
+ -r a \
27
+ -q \
28
+ -v -s \
29
+ --gherkin-terminal-reporter \
30
+ --disable-pytest-warnings
31
+ {envpython} -m coverage xml
32
+
33
34
[testenv:features]
35
0 commit comments