Skip to content

Commit ce93226

Browse files
authored
Add Python 3.5 testing support (#230)
This adds support for testing Python 3.5.
1 parent 6686cd0 commit ce93226

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ language: python
22

33
python:
44
- '2.7'
5+
- '3.5'
56
- '3.6'
67
- '3.7'
78
- '3.8'

Makefile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
ENVS := flake8,py27,py36
21
export PYTHONPATH := $(CURDIR)/lib:$(CURDIR)/test
32
addon_xml := addon.xml
43

@@ -32,7 +31,7 @@ sanity: tox pylint language
3231

3332
tox:
3433
@echo -e "$(white)=$(blue) Starting sanity tox test$(reset)"
35-
tox -q -e $(ENVS)
34+
tox -q
3635

3736
pylint:
3837
@echo -e "$(white)=$(blue) Starting sanity pylint test$(reset)"

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[tox]
2-
envlist = py27,py36,py37,flake8
2+
envlist = py27,py35,py36,py37,py38,flake8
33
skipsdist = True
4+
skip_missing_interpreters = True
45

56
[testenv:flake8]
67
commands =

0 commit comments

Comments
 (0)