forked from ucsf-bmi-203/example
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
comment .travis.yml and disable email notifications
- Loading branch information
Showing
1 changed file
with
11 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/*" |