Skip to content

Commit

Permalink
QA configs updated.
Browse files Browse the repository at this point in the history
  • Loading branch information
idlesign committed Nov 21, 2016
1 parent 6d4be33 commit 994f4ef
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 7 deletions.
10 changes: 4 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
sudo: false

language: python

python:
Expand All @@ -6,10 +8,6 @@ python:
- 3.3
- 2.7

install:
- pip install -U coverage coveralls

script: coverage run -a --source=pytest_race setup.py test
install: pip install tox-travis

after_success:
coveralls
script: tox -e travis
13 changes: 12 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,21 @@ envlist = py27,py33,py34,py35
install_command = pip install {opts} {packages}
skip_missing_interpreters = True

[testenv]

[testenv]
commands =
{envbindir}/py.test {posargs}
deps =
pytest


[testenv:travis]
passenv =
TRAVIS TRAVIS_JOB_ID TRAVIS_BRANCH
commands =
coverage run --source=pytest_race setup.py test
coveralls
deps =
pytest
coverage
coveralls

0 comments on commit 994f4ef

Please sign in to comment.