mirror of
https://github.com/qurator-spk/dinglehopper.git
synced 2025-07-01 06:29:59 +02:00
📝 dinglehopper: README-DEV: Massage markdown a bit
This commit is contained in:
parent
fed021090d
commit
c48d7646df
1 changed files with 8 additions and 8 deletions
|
@ -1,5 +1,5 @@
|
||||||
# Testing
|
Testing
|
||||||
|
=======
|
||||||
Use `pytest` to run the tests in [the tests directory](qurator/dinglehopper/tests):
|
Use `pytest` to run the tests in [the tests directory](qurator/dinglehopper/tests):
|
||||||
```bash
|
```bash
|
||||||
virtualenv -p /usr/bin/python3 venv
|
virtualenv -p /usr/bin/python3 venv
|
||||||
|
@ -9,28 +9,28 @@ pip install -r requirements-dev.txt
|
||||||
pytest
|
pytest
|
||||||
```
|
```
|
||||||
|
|
||||||
### Test running examples
|
## Test running examples
|
||||||
### Only unit tests
|
Only unit tests:
|
||||||
```bash
|
```bash
|
||||||
pytest -m "not integration"
|
pytest -m "not integration"
|
||||||
```
|
```
|
||||||
|
|
||||||
### Only integration tests
|
Only integration tests:
|
||||||
```bash
|
```bash
|
||||||
pytest -m integration
|
pytest -m integration
|
||||||
```
|
```
|
||||||
|
|
||||||
### All tests
|
All tests:
|
||||||
```bash
|
```bash
|
||||||
pytest
|
pytest
|
||||||
```
|
```
|
||||||
|
|
||||||
### All tests with code coverage
|
All tests with code coverage:
|
||||||
```bash
|
```bash
|
||||||
pytest --cov=qurator --cov-report=html
|
pytest --cov=qurator --cov-report=html
|
||||||
```
|
```
|
||||||
|
|
||||||
### Static code analysis
|
Static code analysis:
|
||||||
```bash
|
```bash
|
||||||
pytest -k "not test" --flake8
|
pytest -k "not test" --flake8
|
||||||
pytest -k "not test" --mypy
|
pytest -k "not test" --mypy
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue