Skip to content

Commit ac3407c

Browse files
authored
Merge pull request #13 from cclauss/patch-1
Travis CI: Add Python 3.8 to testing
2 parents 08ea8b7 + 1cdc0f3 commit ac3407c

File tree

2 files changed

+9
-17
lines changed

2 files changed

+9
-17
lines changed

.travis.yml

+6-15
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,7 @@
1-
sudo: false
1+
os: linux
2+
dist: focal
23
language: python
34

4-
install:
5-
- pip install jupyter
6-
- pip install tox
7-
- pip install nbval
8-
- pip install pytest
9-
10-
11-
stages:
12-
- test
13-
145
jobs:
156
include:
167
- python: 3.5
@@ -19,8 +10,8 @@ jobs:
1910
env: TOXENV=py36
2011
- python: 3.7
2112
env: TOXENV=py37
22-
dist: xenial
23-
sudo: true
13+
- python: 3.8
14+
env: TOXENV=py38
2415

25-
script:
26-
- tox
16+
install: pip install jupyter nbval pytest tox
17+
script: tox

tox.ini

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
skipsdist = True
33
envlist = py35,
44
py36,
5-
py37
5+
py37,
6+
py38
67
skip_missing_interpreters = true
78

89
[testenv]
@@ -11,4 +12,4 @@ deps =
1112
nbval
1213
jupyter
1314
commands =
14-
pytest --nbval notebooks
15+
pytest --nbval notebooks

0 commit comments

Comments
 (0)