From 7f0f6fb417c96e38b44d2c5f4693cc108c5e69c2 Mon Sep 17 00:00:00 2001 From: Piotr Lizonczyk Date: Tue, 9 May 2017 19:26:05 +0200 Subject: [PATCH] .travis.yml modification (no email notifications, add folding) --- .travis.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 0354f39..37000ef 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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