Skip to content

Commit 6ceac65

Browse files
committed
Don't run tests on pull requests
1 parent e1423b8 commit 6ceac65

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ script:
2323
- pylama .
2424

2525
# Unit tests
26-
- python setup.py test
26+
- if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then python setup.py test; fi
2727

2828
# Build docs
2929
- make -C docs html

0 commit comments

Comments
 (0)