Skip to content

Commit

Permalink
Skip functional tests on Python 3 for now
Browse files Browse the repository at this point in the history
  • Loading branch information
mgedmin committed Oct 11, 2017
1 parent 1f67ddd commit 4333f12
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .travis.yml
Expand Up @@ -2,14 +2,18 @@ language: python
sudo: false
python:
- 2.7
- 3.4
- 3.5
- 3.6
env:
- TESTS_PATTERN='f?tests'
matrix:
include:
- { python: 3.4, env: TESTS_PATTERN='tests' }
- { python: 3.5, env: TESTS_PATTERN='tests' }
- { python: 3.6, env: TESTS_PATTERN='tests' }
install:
- pip install -e .
- pip install zope.testrunner coverage coveralls
script:
- coverage run -m zope.testrunner --test-path=src --tests-pattern='^f?tests$' --ignore-new-thread=Dummy
- coverage run -m zope.testrunner --test-path=src --tests-pattern="^${TESTS_PATTERN}$" --ignore-new-thread=Dummy
after_success:
- coveralls
notifications:
Expand Down

0 comments on commit 4333f12

Please sign in to comment.