We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c6eaa5 commit 86ff700Copy full SHA for 86ff700
.gitignore
@@ -45,6 +45,7 @@ htmlcov/
45
.cache
46
nosetests.xml
47
coverage.xml
48
+junit.xml
49
*.cover
50
*.py,cover
51
.hypothesis/
tox.ini
@@ -4,6 +4,8 @@ isolated_build = True
4
5
[testenv]
6
extras = dev # Install development dependencies from pyproject.toml
7
+deps =
8
+ coverage
9
allowlist_externals =
10
curl
11
bash
@@ -18,5 +20,6 @@ commands_pre =
18
20
rm get_helm.sh; \
19
21
fi'
22
commands =
- # Run all tests with coverage and generate XML report
- pytest -v --cov=helm_values_manager --cov-report=xml tests/
23
+ # Run tests with coverage and generate both XML and JUnit reports
24
+ coverage run -m pytest -rap --junitxml=junit.xml tests/
25
+ coverage xml -i
0 commit comments