4 changed files with 22 additions and 9 deletions
@ -1,14 +1,10 @@ |
|||
language: python |
|||
python: |
|||
- "2.7" |
|||
- "3.3" |
|||
- "3.4" |
|||
install: |
|||
- make init |
|||
- pip install tox |
|||
- pip install coveralls |
|||
- pip install scrutinizer-ocular |
|||
script: |
|||
- make test |
|||
- tox |
|||
after_success: |
|||
- coveralls |
|||
- ocular |
|||
|
@ -0,0 +1,17 @@ |
|||
[tox] |
|||
envlist = py27, py33, py34, pypy |
|||
|
|||
[testenv] |
|||
setenv = |
|||
PYTHONHASHSEED = 0 |
|||
deps = |
|||
nose |
|||
coverage |
|||
mock |
|||
requests |
|||
enum34 |
|||
vcrpy |
|||
pyyaml |
|||
commands = |
|||
coverage erase |
|||
nosetests --verbosity 1 --with-coverage --cover-package=steam |
Loading…
Reference in new issue