Skip to content

Commit

Permalink
Explicitly set pylint to call python3.7
Browse files Browse the repository at this point in the history
Solve pylint passing error on annotations
  • Loading branch information
Jason0214 committed Jun 30, 2019
1 parent 9102db3 commit 837f6ab
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
dist: xenial
language: python
python:
- 3.6
- 3.7

cache:
directories:
- $HOME/.blender-cache

before_install:
- sudo apt-get update
- sudo apt-get install --no-install-recommends -y libsdl1.2debian libglu1 python3-pip
- sudo pip3 install --upgrade pip
- sudo pip3 install --upgrade setuptools
- sudo pip3 install -r requirements.txt
- pip install --upgrade pip
- pip install --upgrade setuptools

install:
- sudo apt-get install --no-install-recommends -y libsdl1.2debian libglu1 python3-pip
- pip install -r requirements.txt
- bash tests/install_blender.sh
- source .envs

script:
- make all BLENDER=$BLENDER_BIN PYLINT=pylint PEP8=pycodestyle
- make all BLENDER=$BLENDER_BIN PYLINT='python3 -m pylint'
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PYLINT = pylint
PEP8 = pycodestyle
PEP8 = pycodestyle
BLENDER = blender
GODOT = godot

Expand Down

0 comments on commit 837f6ab

Please sign in to comment.