We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 657fdda commit 7af7e31Copy full SHA for 7af7e31
README.md
@@ -23,7 +23,12 @@ See [requirements.txt](requirements.txt) file
23
# Run tests
24
25
```bash
26
+pip install -r requirements-dev.txt
27
+# run unit tests
28
python -m unittest tests
29
+# run code coverage
30
+coverage run --source=pywps -m unittest tests
31
+coverage report -m
32
```
33
34
# Run web application
requirements-dev.txt
@@ -1,3 +1,4 @@
1
+coverage
2
flake8
3
pylint
4
Sphinx
0 commit comments