We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2410914 commit 7e81270Copy full SHA for 7e81270
1 file changed
.travis.yml
@@ -5,8 +5,6 @@ matrix:
5
include:
6
- name: "Python 2.7 on Linux"
7
python: 2.7
8
- - name: "Python 3.7 on Linux"
9
- python: 3.7
10
- name: "Python 2.7 on macOS"
11
os: osx
12
osx_image: xcode10.2
@@ -18,6 +16,18 @@ matrix:
18
16
node_js: 12 # node
19
17
env: PATH=/c/Python27:/c/Python27/Scripts:$PATH
20
before_install: choco install python2
+ - name: "Node.js 6 & Python 3.7 on Linux"
+ python: 3.7
21
+ before_install: nvm install 6
22
+ - name: "Node.js 8 & Python 3.7 on Linux"
23
24
+ before_install: nvm install 8
25
+ - name: "Node.js 10 & Python 3.7 on Linux"
26
27
+ before_install: nvm install 10
28
+ - name: "Node.js 12 & Python 3.7 on Linux"
29
30
+ before_install: nvm install 12
31
allow_failures:
32
- os: windows
33
install:
@@ -26,7 +36,7 @@ install:
36
before_script:
37
- flake8 --version
38
# stop the build if there are Python syntax errors or undefined names
- - flake8 . --count --select=E9,F63,F72,F82 --show-source --statistics
39
+ - flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
40
# exit-zero treats all errors as warnings. Two space indentation is OK. The GitHub editor is 127 chars wide
41
- flake8 . --count --exit-zero --ignore=E111,E114,W503 --max-complexity=10 --max-line-length=127 --statistics
42
- npm install
0 commit comments