We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2cec28f commit a45574bCopy full SHA for a45574b
4 files changed
.gitignore
@@ -15,4 +15,5 @@ venv
15
.python-version
16
17
# pytest report
18
-test-report.html
+test-report.html
19
+assets/
README.md
@@ -21,7 +21,7 @@ From the root directory of your shell run following commands:
21
~ ./run-tests.sh unittest
22
```
23
24
-**Launch all set of tests**
+**Launch whole set of tests**
25
```bash
26
~ ./run-tests.sh all
27
pytest.ini
@@ -9,3 +9,4 @@ addopts = -rsxX
9
-v
10
--self-contained-html
11
--html=test-report.html
12
+ --cov=demo
tests/coverage/markers.py
@@ -3,4 +3,4 @@
3
4
unittest: MarkDecorator = pytest.mark.unittest
5
smoke: MarkDecorator = pytest.mark.smoke
6
-skip: MarkDecorator = pytest.mark.skip
+
0 commit comments