Skip to content

Commit

Permalink
Tentatively support Travis CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
puccia committed Jun 23, 2016
1 parent 913a625 commit 130c156
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
9 changes: 9 additions & 0 deletions .travis.yml
@@ -0,0 +1,9 @@
sudo: false
language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
install: pip install tox-travis
script: tox
10 changes: 9 additions & 1 deletion tox.ini
@@ -1,5 +1,6 @@
[tox]
envlist = docs,py26,py27,py32,py33,pypy
envlist = docs,py26,py27,py33,py34,pypy

[testenv]
commands=py.test -vv --cov=sepacbi --cov-report=html --junitxml=sepacbi-{envname}.xml tests
deps =
Expand All @@ -16,3 +17,10 @@ deps=
sphinx
pytest
commands=py.test --tb=line -v --junitxml=sepacbi-docs-{envname}.xml check_docs.py

[tox:travis]
2.6 = py26
2.7 = py27
3.2 = py32
3.3 = py33
3.4 = py34, docs

0 comments on commit 130c156

Please sign in to comment.