Skip to content

Commit c1e08d4

Browse files
committed
Run the tests...
Signed-off-by: Yoan Blanc <[email protected]>
1 parent 4a54f89 commit c1e08d4

File tree

2 files changed

+13
-8
lines changed

2 files changed

+13
-8
lines changed

Diff for: .travis.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,10 @@ matrix:
5555
- python: nightly
5656

5757
install:
58-
- pip install tox tox-travis
58+
- pip install .[test]
5959

60-
script: "tox"
60+
script:
61+
- python setup.py test
6162

6263
# the vips7 py binding won't work with pypy, make sure it's off
6364
before_install:

Diff for: tox.ini

+10-6
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,20 @@ envlist =
88

99
[travis]
1010
python =
11-
3.6: doc
11+
2.7: test
12+
3.3: test
13+
3.4: test
14+
3.5: test
15+
3.6: test, doc
16+
3.7: test
17+
pypy: test
18+
pypy3: test
1219

1320
[pytest]
14-
addopts=--verbose
15-
log_level=WARNING
21+
norecursedirs = .eggs tmp* vips-*
22+
log_level = WARNING
1623

1724
[testenv]
18-
setenv =
19-
PYTHONPATH = {toxinidir}:{toxinidir}
20-
2125
commands =
2226
test: python setup.py test
2327
qa: pip install -e .[test]

0 commit comments

Comments
 (0)