File tree 3 files changed +5
-3
lines changed
3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 29
29
30
30
test :
31
31
coverage erase
32
- PYTHONHASHSEED=0 nosetests --nologcapture --verbosity 1 --with-coverage --cover-package =steam tests
32
+ PYTHONHASHSEED=0 pytest --cov =steam tests
33
33
34
34
webauth_gen :
35
35
rm -f vcr/webauth*
Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ protobuf>=3.0.0
7
7
gevent-eventemitter >= 2.0
8
8
enum34 == 1.1.2 ; python_version < '3.4'
9
9
coverage == 4.0.3
10
+ pytest == 3.2.1
11
+ pytest-cov == 2.5.1
10
12
mock == 1.3.0
11
13
nose == 1.3.7
12
14
PyYAML == 3.11
Original file line number Diff line number Diff line change 1
1
[tox]
2
- envlist = py27, py34
2
+ envlist = py27, py36
3
3
4
4
[testenv]
5
5
setenv =
6
6
PYTHONHASHSEED = 0
7
7
deps = -rrequirements.txt
8
8
commands =
9
- nosetests --verbosity 1 --with-coverage -- cover-package =steam
9
+ pytest --cov =steam tests
You can’t perform that action at this time.
0 commit comments