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 22e5e50 commit e154cc7Copy full SHA for e154cc7
.gitignore
@@ -47,6 +47,7 @@ htmlcov/
47
.pytest_cache/
48
nosetests.xml
49
coverage.xml
50
+temp/
51
52
# Translations
53
*.mo
docker-compose.test.yml
@@ -5,4 +5,6 @@ services:
5
build:
6
context: .
7
dockerfile: Dockerfile
8
- command: sh -c pytest --cov=unit --cov=integrations --cov-report=html -v
+ volumes:
9
+ - ./temp:/temp
10
+ command: sh -c 'pytest --junitxml=/temp/testresults/test-results.xml --cov=junction --cov-report=xml:/temp/testresults/coverage.xml -v'
0 commit comments