We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e0c253 commit 6d4a185Copy full SHA for 6d4a185
DockerfileBuild
@@ -0,0 +1,16 @@
1
+FROM python:3.6
2
+LABEL author="Peter Götz ([email protected])"
3
+
4
+WORKDIR /torpydo
5
6
+ENV PYTHONPATH=/torpydo
7
8
+COPY requirements.txt /torpydo
9
+COPY features/ /torpydo/features
10
+COPY tests/ /torpydo/tests
11
+COPY torpydo/ /torpydo/torpydo
12
13
+RUN pip install --upgrade pip
14
+RUN pip install -r requirements.txt
15
16
+CMD cd torpydo && python -m torpydo
README.md
@@ -76,6 +76,12 @@ to run with coverage:
76
nosetests --exe --with-coverage
77
```
78
79
+to run and store the test results for further examination (e.g. build pipeline)
80
+```
81
+nosetests --exe --with-xunit
82
+behave --junit
83
84
85
Run behave tests with coverage:
86
87
https://stackoverflow.com/a/37447392/736079
0 commit comments