Additional tests for confserver

Additional tests for confserver
This commit is contained in:
Brian Martin 2019-03-15 09:05:54 -04:00
parent 747eeda4a5
commit 5392bef74f
4 changed files with 494 additions and 104 deletions

16
tests/tests.md Normal file
View file

@ -0,0 +1,16 @@
# Bumper tests
Bumper uses nosetests for the majority of test cases. Install requirements using `pipenv install --dev`
## Testing
Enter pipenv shell `pipenv shell`
### Run tests
`nosetests`
### Run tests with coverage
`nosetests --cover-package bumper --with-coverage`
### Run tests with coverage html report
`nosetests --cover-package bumper --with-coverage --cover-html-dir="tests/report" --cover-html`
The report will be output into tests/report/index.html for further analysis.