Skip to content

Commit

Permalink
use tox from travis, taken from Flask repo
Browse files Browse the repository at this point in the history
enable python 3.5 in tox
include blinker tests
ignore intellij config and tox cache
  • Loading branch information
davidism committed Dec 3, 2015
1 parent f5d367e commit a6a8c9f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,5 @@ dist/
docs/_build
.tox/
*.egg
.idea/
.cache/
9 changes: 4 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
language: python

sudo: false
language: python

python:
- "2.6"
Expand All @@ -11,10 +10,10 @@ python:
- "3.5"

install:
- pip install --editable .
- pip install blinker
- pip install tox

script: make test
script:
- tox -e py

notifications:
email: false
Expand Down
5 changes: 4 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
[tox]
envlist = py26, py27, pypy, py33, py34
envlist = py26, py27, pypy, py33, py34, py35

[testenv]
commands = python test_sqlalchemy.py

deps =
blinker

0 comments on commit a6a8c9f

Please sign in to comment.