Skip to content

Commit

Permalink
verbose unitests exec
Browse files Browse the repository at this point in the history
  • Loading branch information
xmendez committed May 25, 2018
1 parent 52d4a82 commit 6a772ac
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ install:
- python setup.py install
script:
- flake8 --ignore=E501,E402,F401 src tests
- coverage run --append -m unittest discover -s tests/
- coverage run --append -m unittest discover -v -s tests/
- if [[ $TRAVIS_PYTHON_VERSION == '3.6' && $TRAVIS_BRANCH == 'master' ]]; then codecov; fi
stages:
- test
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ docs:
cd docs && make html

coverage:
coverage report --skip-covered --include "*site-packages/wfuzz*" -m
coverage report --skip-covered --include "*python3.5/site-packages/wfuzz*" -m
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ envlist = begin,docker,py27,py35,end
[testenv]
commands =
flake8 --ignore=E501,E402,F401 src tests
coverage run --append -m unittest discover -s tests/
coverage run --append -m unittest discover -v -s tests/
deps =
flake8
netaddr
Expand All @@ -21,7 +21,7 @@ commands = coverage erase
deps = coverage

[testenv:end]
commands = coverage report --skip-covered --include "*site-packages/wfuzz*" -m
commands = coverage report --skip-covered --include '*python3.5/site-packages/wfuzz*' -m
deps = coverage

[testenv:codecov]
Expand Down

0 comments on commit 6a772ac

Please sign in to comment.