Skip to content

Commit ea051df

Browse files
committed
Simplify CI setup
1 parent 96c65ba commit ea051df

3 files changed

Lines changed: 3 additions & 10 deletions

File tree

.travis.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,5 @@ python:
66
- "3.3"
77
- "3.4"
88

9-
install:
10-
- pip install tox
11-
12-
script:
13-
- python run-tests.py
9+
install: pip install tox
10+
script: tox

appveyor.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ init:
1212
install:
1313
- ps: (new-object net.webclient).DownloadFile('https://raw.github.com/pypa/pip/master/contrib/get-pip.py', 'C:/get-pip.py')
1414
- "%PYTHON%/python.exe C:/get-pip.py"
15-
- "%PYTHON%/Scripts/pip.exe install -e ."
1615
- "%PYTHON%/Scripts/pip.exe install tox"
1716

1817
test_script:
19-
- "%PYTHON%/python.exe run-tests.py"
18+
- "%PYTHON%/Scripts/tox.exe"

tox.ini

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
[tox]
2-
envlist= py26,py27,py33,py34,pypy
3-
41
[testenv]
52
deps = pytest
63
commands = py.test []

0 commit comments

Comments
 (0)