File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ pip-log.txt
3939.coverage *
4040.tox
4141.noseids
42+ htmlcov /
4243
4344# Translations
4445* .mo
Original file line number Diff line number Diff line change 77 - python : ' 2.7'
88 env : COVER=1
99 - python : ' 3.3'
10- env : COVER=0
1110 - python : ' 3.4'
12- env : COVER=0
1311 - python : ' 3.5'
14- env : COVER=0
1512 - python : ' 3.6'
16- env : COVER=0
1713
1814before_install :
1915 - bash travis/install-redis.sh
@@ -23,3 +19,7 @@ install:
2319
2420script :
2521 - make test lint
22+
23+ after_success :
24+ if [ "$COVER" = "1" ]; then coveralls -v ; fi
25+
Original file line number Diff line number Diff line change 6161test :
6262 $(pytest ) $(test_args )
6363
64- coverage :
65- coverage run --source $(project ) setup.py test
66- coverage report -m
64+ coverage : test
6765 coverage html
6866 open htmlcov/index.html
6967
Original file line number Diff line number Diff line change 3333 ],
3434 extras_require = {
3535 'tests' : [
36+ 'coveralls' ,
3637 'doubles' ,
3738 'flake8<3' , # see https://github.com/zheller/flake8-quotes/issues/29
3839 'flake8-quotes' ,
You can’t perform that action at this time.
0 commit comments