File tree Expand file tree Collapse file tree 4 files changed +32
-1
lines changed
Expand file tree Collapse file tree 4 files changed +32
-1
lines changed Original file line number Diff line number Diff line change 1+ language : python
2+ python :
3+ - 2.7
4+ - 3.3
5+ - 3.4
6+ - 3.5
7+ - pypy
8+
9+ install :
10+ - pip install tox tox-travis
11+ - pip install coverage coveralls
12+
13+ script :
14+ - tox -r
Original file line number Diff line number Diff line change @@ -5,3 +5,5 @@ py==1.4.17
55pytest == 2.4.2
66pytest-cov == 1.6
77pytest-xdist == 1.9
8+ tox == 2.7.0
9+ virtualenv == 15.1.0
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ def run_tests(self):
1717
1818setup (
1919 name = 'skeleton_for_pytest' ,
20- version = '0.0.1 ' ,
20+ version = '0.0.2 ' ,
2121 url = 'https://github.com/tddbc/python_pytest.git' ,
2222 author = 'TDD BaseCamp' ,
2323 author_email = 'tddbc@googlegroups.com' ,
@@ -36,6 +36,8 @@ def run_tests(self):
3636 'Programming Language :: Python :: 2.7' ,
3737 'Programming Language :: Python :: 3' ,
3838 'Programming Language :: Python :: 3.3' ,
39+ 'Programming Language :: Python :: 3.4' ,
40+ 'Programming Language :: Python :: 3.5' ,
3941 'Programming Language :: Python :: Implementation :: PyPy' ,
4042 ],
4143)
Original file line number Diff line number Diff line change 1+ [tox]
2+ skipsdist = True
3+ envlist =
4+ py27,
5+ py33,
6+ py34,
7+ py35
8+
9+ [testenv]
10+ deps =
11+ -r{toxinidir}/requirements.txt
12+ commands =
13+ python setup.py test
You can’t perform that action at this time.
0 commit comments