Skip to content

Commit

Permalink
comment .travis.yml and disable email notifications
Browse files Browse the repository at this point in the history
  • Loading branch information
tlnagy committed Jan 9, 2017
1 parent 6ebee27 commit 72a52b4
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,28 @@
# python of course and we don't need access to sudo atm
language: python
sudo: false

# emails are annoying
notifications:
email: false

# build on Ubuntu 14.04 because the default is
# really old
os: linux
dist: trusty

# test on the latest version of python
python:
- "3.6"

# only run travis on the master branch
branches:
only:
- master

# command to install dependencies
# install dependencies listed in requirements
install: "pip install -r requirements.txt"

# run tests
script:
"python -m pytest -v test/*"

0 comments on commit 72a52b4

Please sign in to comment.