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 74cf15f commit a71f5a8Copy full SHA for a71f5a8
Dockerfile
@@ -23,8 +23,8 @@ RUN echo "#!/bin/bash\n/python/entrypoint.sh startapp" >> /bin/startapp && chmod
23
# Change users
24
USER python
25
26
-# Create base all useful directory
27
-RUN mkdir /python/app /python/logs /python/files /python/static
+# Create base directories
+RUN mkdir /python/app /python/logs /python/files /python/static /python/reports
28
29
# Change directory
30
WORKDIR /python/app
entrypoint.sh
@@ -69,6 +69,7 @@ runtests() {
69
fi
70
python -m pytest -vv --durations=3 --junitxml unittesting.xml --cov=. $covconf\
71
--cov-report term-missing --cov-report xml:coverage.xml
72
+ mv *.xml /python/reports/
73
}
74
75
0 commit comments