File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,12 +2,16 @@ language: python
22python :
33 - 2.7
44sudo : false
5+ before_install :
6+ - python --version
7+ - uname -a
8+ - lsb_release -a
59# command to install dependencies
610install :
711 - " pip install -r requirements.txt"
812 - " pip install coverage"
913 - " pip install coveralls"
1014script :
11- - " coverage run --source=http setup.py test"
15+ - " coverage run --source=http_request_randomizer setup.py test"
1216after_success :
1317 coveralls
Original file line number Diff line number Diff line change 44# and then run "tox" from this directory.
55
66[tox]
7- envlist = py27, py3
7+ envlist = py27, py3, ,cov
88
99[testenv]
1010; commands = {envpython} setup.py test
@@ -40,4 +40,8 @@ commands=
4040[testenv:py3verbose]
4141basepython =python3
4242commands =
43- py.test tests --doctest-module --cov =. --cov-report term
43+ py.test tests --doctest-module --cov =. --cov-report term
44+
45+ [testenv:cov]
46+ usedevelop = true
47+ commands = py.test tests --cov =http_request_randomizer
You can’t perform that action at this time.
0 commit comments