Skip to content

Commit 72a52b4

Browse files
committed
comment .travis.yml and disable email notifications
1 parent 6ebee27 commit 72a52b4

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.travis.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,28 @@
1+
# python of course and we don't need access to sudo atm
12
language: python
23
sudo: false
34

5+
# emails are annoying
6+
notifications:
7+
email: false
8+
9+
# build on Ubuntu 14.04 because the default is
10+
# really old
411
os: linux
512
dist: trusty
613

14+
# test on the latest version of python
715
python:
816
- "3.6"
917

18+
# only run travis on the master branch
1019
branches:
1120
only:
1221
- master
1322

14-
# command to install dependencies
23+
# install dependencies listed in requirements
1524
install: "pip install -r requirements.txt"
1625

26+
# run tests
1727
script:
1828
"python -m pytest -v test/*"

0 commit comments

Comments
 (0)