-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI: run unit tests & expand Travis configuration
- Loading branch information
Showing
2 changed files
with
12 additions
and
4 deletions.
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
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,10 +1,16 @@ | ||
dist: trusty | ||
sudo: false | ||
language: python | ||
cache: pip | ||
python: | ||
- "2.7" | ||
- "3.5" | ||
- "3.6" | ||
# command to install dependencies | ||
install: | ||
- "pip install flake8" | ||
install: | ||
- pip install flake8 numpy scipy | ||
- python setup.py install | ||
# command to run tests | ||
script: flake8 lime | ||
|
||
script: | ||
- py.test lime | ||
- flake8 lime |