Conditionally enable py3.5 tests in travis

This commit is contained in:
Alberto Berti 2015-11-10 04:09:05 +01:00
parent 782310039b
commit 795887e044
2 changed files with 7 additions and 1 deletions

View File

@ -14,4 +14,7 @@ install:
- pip install docutils==$DOCUTILS
- pip install -r test-reqs.txt
before_script: flake8
script: make test
script:
- if [[ $TRAVIS_PYTHON_VERSION == '3.5' ]]; then make test-async; fi
- if [[ $TRAVIS_PYTHON_VERSION != '3.5' ]]; then make test; fi

View File

@ -55,6 +55,9 @@ reindent:
@$(PYTHON) utils/reindent.py -r -n .
test:
@cd tests; $(PYTHON) run.py -I py35 -d -m '^[tT]est' $(TEST)
test-async:
@cd tests; $(PYTHON) run.py -d -m '^[tT]est' $(TEST)
covertest: