We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 08ea8b7 + 1cdc0f3 commit ac3407cCopy full SHA for ac3407c
.travis.yml
@@ -1,16 +1,7 @@
1
-sudo: false
+os: linux
2
+dist: focal
3
language: python
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
14
jobs:
15
include:
16
- python: 3.5
@@ -19,8 +10,8 @@ jobs:
19
env: TOXENV=py36
20
- python: 3.7
21
env: TOXENV=py37
22
- dist: xenial
23
- sudo: true
+ - python: 3.8
+ env: TOXENV=py38
24
25
-script:
26
-- tox
+install: pip install jupyter nbval pytest tox
17
+script: tox
tox.ini
@@ -2,7 +2,8 @@
skipsdist = True
envlist = py35,
py36,
- py37
+ py37,
+ py38
skip_missing_interpreters = true
[testenv]
@@ -11,4 +12,4 @@ deps =
nbval
jupyter
commands =
- pytest --nbval notebooks
+ pytest --nbval notebooks
0 commit comments