forked from 3b1b/manim
-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Devin Neal
committed
May 1, 2019
1 parent
391a1b5
commit 8d621e7
Showing
4 changed files
with
10 additions
and
15 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,17 @@ | ||
group: travis_latest | ||
language: python | ||
sudo: required # required for Python 3.7 (travis-ci/travis-ci#9069) | ||
dist: xenial # required for Python 3.7 (travis-ci/travis-ci#9069) | ||
python: "3.7" | ||
cache: pip | ||
matrix: | ||
include: | ||
- python: 3.7 | ||
dist: xenial # required for Python 3.7 (travis-ci/travis-ci#9069) | ||
sudo: required # required for Python 3.7 (travis-ci/travis-ci#9069) | ||
|
||
install: | ||
- pip install --upgrade pip | ||
- pip install -r requirements.txt | ||
- pip install flake8 | ||
before_script: | ||
# stop the build if there are Python syntax errors or undefined names | ||
- flake8 . --count --select=E9,F63,F72,F82 --show-source --statistics | ||
- flake8 manimlib/ --count --select=E9,F63,F72,F82 --show-source --statistics | ||
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide | ||
- flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics | ||
- flake8 manimlib/ --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics | ||
script: | ||
- true # add other tests here | ||
notifications: | ||
on_success: change | ||
on_failure: change # `always` will be the setting once code changes slow down |
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
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