Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 27 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,27 @@
language: node_js
sudo: false
node_js:
- "0.10"
- "0.12"
script: make travis
after_script: make report
node_js-steps: &node_js-steps
language: node_js
script: make travis
after_script: make report

python-steps: &python-steps
language: python
install: pip install flake8
script:
# stop the build if there are Python syntax errors or undefined names
- flake8 . --count --select=E901,E999,F821,F822,F823 --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

matrix:
include:
- node_js: "0.10"
<<: *node_js-steps
- node_js: "0.12"
<<: *node_js-steps
- node_js: "node" # current version of Node.js on Travis CI
<<: *node_js-steps
- python: "2.7"
<<: *python-steps
- python: "3.7"
dist: xenial # required for Python >= 3.7 (travis-ci/travis-ci#9069)
<<: *python-steps