Skip to content

Commit 74530bf

Browse files
authored
add python 3.8 testing (#32)
1 parent 86f3fc2 commit 74530bf

File tree

2 files changed

+34
-31
lines changed

2 files changed

+34
-31
lines changed

.travis.yml

Lines changed: 33 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,33 @@
1-
dist: xenial
2-
sudo: false
3-
language: python
4-
matrix:
5-
include:
6-
- python: 3.4
7-
env: TOX_ENV=py34
8-
9-
- python: 3.5
10-
env: TOX_ENV=py35
11-
12-
- python: 3.6
13-
env: TOX_ENV=py36
14-
15-
- python: 3.7
16-
env: TOX_ENV=py37
17-
- python: 3.7
18-
env: TOX_ENV=lint
19-
20-
- python: 2.7
21-
env: TOX_ENV=py27
22-
- python: 2.7
23-
env: TOX_ENV=lint
24-
addons:
25-
apt:
26-
packages:
27-
- ed
28-
install: pip install tox
29-
script: tox -e $TOX_ENV
30-
cache: pip
1+
dist: xenial
2+
sudo: false
3+
language: python
4+
matrix:
5+
include:
6+
- python: 3.4
7+
env: TOX_ENV=py34
8+
9+
- python: 3.5
10+
env: TOX_ENV=py35
11+
12+
- python: 3.6
13+
env: TOX_ENV=py36
14+
15+
- python: 3.7
16+
env: TOX_ENV=py37
17+
18+
- python: 3.8
19+
env: TOX_ENV=py38
20+
- python: 3.8
21+
env: TOX_ENV=lint
22+
23+
- python: 2.7
24+
env: TOX_ENV=py27
25+
- python: 2.7
26+
env: TOX_ENV=lint
27+
addons:
28+
apt:
29+
packages:
30+
- ed
31+
install: pip install tox
32+
script: tox -e $TOX_ENV
33+
cache: pip

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{27,34,35,36,37}, lint
2+
envlist = py{27,34,35,36,37,38}, lint
33

44
[testenv]
55
commands = nosetests --with-doctest --doctest-extension=rst {posargs}

0 commit comments

Comments
 (0)