We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e90cbf2 commit 0aaf0bcCopy full SHA for 0aaf0bc
.travis.yml
@@ -1,14 +1,21 @@
1
language: python
2
-python: 2.7
+
3
+python:
4
+ - "3.4"
5
+ - "3.5"
6
+ - "3.6"
7
+ - "3.7"
8
+ - "3.8"
9
+ - "3.8-dev"
10
11
before_install:
12
- sudo apt update -y
13
- sudo apt-get -y install lua5.1 luarocks
14
- sudo luarocks install luacheck
15
16
install:
- - pip install -r requirements.txt
- - pip install -r requirements-test.txt
17
+ - pip3 install -r requirements.txt
18
+ - pip3 install -r requirements-test.txt
19
20
script:
21
- make lint
Makefile
@@ -5,7 +5,7 @@ default:
lint: flake8 luacheck
flake8:
- python2 -m flake8 *.py lib/*.py
+ python -m flake8 *.py lib/*.py
luacheck:
luacheck --config .luacheckrc .
0 commit comments