Add sniffing and developing notes

Add sniffing and developing notes
This commit is contained in:
Brian Martin 2020-01-01 17:00:39 -05:00
parent 20e29a7a19
commit 0a2276d953
4 changed files with 141 additions and 17 deletions

View file

@ -1,16 +0,0 @@
# Bumper tests
Bumper uses pytest for the majority of test cases. Install requirements using `pipenv install --dev`
## Testing
Enter pipenv shell `pipenv shell`
### Run tests
`python -m pytest tests`
### Run tests with coverage
`python -m pytest --cov=./ tests`
### Run tests with coverage html report
`python -m pytest --cov=./ tests --cov-report html:tests/report`
The report will be output into tests/report/index.html for further analysis.