4 changed files with 22 additions and 9 deletions
@ -1,14 +1,10 @@ |
|||||
language: python |
language: python |
||||
python: |
|
||||
- "2.7" |
|
||||
- "3.3" |
|
||||
- "3.4" |
|
||||
install: |
install: |
||||
- make init |
- pip install tox |
||||
- pip install coveralls |
- pip install coveralls |
||||
- pip install scrutinizer-ocular |
- pip install scrutinizer-ocular |
||||
script: |
script: |
||||
- make test |
- tox |
||||
after_success: |
after_success: |
||||
- coveralls |
- coveralls |
||||
- ocular |
- 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