.travis.yml modification (no email notifications, add folding)

This commit is contained in:
Piotr Lizonczyk
2017-05-09 19:26:05 +02:00
parent 8cddef8ae5
commit 7f0f6fb417

View File

@@ -1,10 +1,14 @@
language: python
notifications:
email: false
python:
- "3.5"
- "3.6"
- "3.5-dev" # 3.5 development branch
- "3.6-dev" # 3.6 development branch
# command to install dependencies
install: "pip install -r requirements.txt"
install:
- "pip install -r requirements.txt"
- "pip install pytest-travis-fold"
# command to run tests
script: pytest