8000 Merge pull request #195 from harelba/more-py3-stuff · pythonthings/q@28f776e · GitHub
[go: up one dir, main page]

Skip to content

Commit 28f776e

Browse files
authored
Merge pull request harelba#195 from harelba/more-py3-stuff
Python 2+3 Compatibility
2 parents aeb9dae + 746cb9f commit 28f776e

File tree

5 files changed

+1023
-874
lines changed

5 files changed

+1023
-874
lines changed

.travis.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,12 @@ python:
33
- "2.7"
44
- "3.6"
55
matrix:
6+
include:
7+
- python: "3.7"
8+
dist: xenial # Need for python 3.7
69
allow_failures:
710
- python: "3.6"
8-
install: pip install flake8
9-
before_script: flake8 ./bin/q --count --select=E901,E999,F821,F822,F823 --show-source --statistics
11+
- python: "3.7"
12+
install: pip install -r requirements.txt
13+
before_script: flake8 ./bin/q ./test/test-suite --count --select=E901,E999,F821,F822,F823 --show-source --statistics
1014
script: test/test-all

0 commit comments

Comments
 (0)
0