Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ htmlcov/
.cache
nosetests.xml
coverage.xml
junit.xml
*.cover
*.py,cover
.hypothesis/
Expand Down
7 changes: 5 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ isolated_build = True

[testenv]
extras = dev # Install development dependencies from pyproject.toml
deps =
coverage
allowlist_externals =
curl
bash
Expand All @@ -18,5 +20,6 @@ commands_pre =
rm get_helm.sh; \
fi'
commands =
# Run all tests with coverage and generate XML report
pytest -v --cov=helm_values_manager --cov-report=xml tests/
# Run tests with coverage and generate both XML and JUnit reports
coverage run -m pytest -rap --junitxml=junit.xml tests/
coverage xml -i
Loading