Skip to content

Commit a6a8c9f

Browse files
committed
use tox from travis, taken from Flask repo
enable python 3.5 in tox include blinker tests ignore intellij config and tox cache
1 parent f5d367e commit a6a8c9f

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,5 @@ dist/
66
docs/_build
77
.tox/
88
*.egg
9+
.idea/
10+
.cache/

.travis.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
language: python
2-
31
sudo: false
2+
language: python
43

54
python:
65
- "2.6"
@@ -11,10 +10,10 @@ python:
1110
- "3.5"
1211

1312
install:
14-
- pip install --editable .
15-
- pip install blinker
13+
- pip install tox
1614

17-
script: make test
15+
script:
16+
- tox -e py
1817

1918
notifications:
2019
email: false

tox.ini

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
[tox]
2-
envlist = py26, py27, pypy, py33, py34
2+
envlist = py26, py27, pypy, py33, py34, py35
33

44
[testenv]
55
commands = python test_sqlalchemy.py
6+
7+
deps =
8+
blinker

0 commit comments

Comments
 (0)