Skip to content

Commit 8086c94

Browse files
committed
chore(ci): test 3.9 and nightly python version
1 parent 2002098 commit 8086c94

File tree

2 files changed

+25
-10
lines changed

2 files changed

+25
-10
lines changed

.travis.yml

+24-9
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
include:
1515
- stage: lint
1616
name: commitlint
17-
python: 3.8
17+
python: 3.9
1818
script:
1919
- pip3 install pre-commit
2020
- pre-commit run --hook-stage manual commitlint-travis
@@ -24,44 +24,44 @@ jobs:
2424
- stage: lint
2525
name: black_lint
2626
dist: bionic
27-
python: 3.8
27+
python: 3.9
2828
script:
2929
- pip3 install -U --pre black==20.8b1
3030
- black --check .
3131
- stage: test
3232
name: cli_func_v4
3333
dist: bionic
34-
python: 3.8
34+
python: 3.9
3535
script:
3636
- pip3 install tox
3737
- tox -e cli_func_v4
3838
- stage: test
3939
name: py_func_v4
4040
dist: bionic
41-
python: 3.8
41+
python: 3.9
4242
script:
4343
- pip3 install tox
4444
- tox -e py_func_v4
4545
- stage: test
4646
name: cli_func_nightly
4747
dist: bionic
48-
python: 3.8
48+
python: 3.9
4949
env: GITLAB_TAG=nightly
5050
script:
5151
- pip3 install tox
5252
- tox -e cli_func_v4
5353
- stage: test
5454
name: py_func_nightly
5555
dist: bionic
56-
python: 3.8
56+
python: 3.9
5757
env: GITLAB_TAG=nightly
5858
script:
5959
- pip3 install tox
6060
- tox -e py_func_v4
6161
- stage: test
6262
name: docs
6363
dist: bionic
64-
python: 3.8
64+
python: 3.9
6565
script:
6666
- pip3 install tox
6767
- tox -e docs
@@ -86,18 +86,32 @@ jobs:
8686
script:
8787
- pip3 install tox
8888
- tox -e py38
89+
- stage: test
90+
dist: bionic
91+
name: py39
92+
python: 3.9
93+
script:
94+
- pip3 install tox
95+
- tox -e py38
96+
- stage: test
97+
dist: bionic
98+
name: nightly
99+
python: nightly
100+
script:
101+
- pip3 install tox
102+
- tox -e py38
89103
- stage: test
90104
dist: bionic
91105
name: twine-check
92-
python: 3.8
106+
python: 3.9
93107
script:
94108
- pip3 install tox wheel
95109
- python3 setup.py sdist bdist_wheel
96110
- tox -e twine-check
97111
- stage: test
98112
dist: bionic
99113
name: coverage
100-
python: 3.8
114+
python: 3.9
101115
install:
102116
- pip3 install tox codecov
103117
script:
@@ -106,3 +120,4 @@ jobs:
106120
- codecov
107121
allow_failures:
108122
- env: GITLAB_TAG=nightly
123+
- name: nightly

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
minversion = 1.6
33
skipsdist = True
4-
envlist = py38,py37,py36,pep8,black,twine-check
4+
envlist = py39,py38,py37,py36,pep8,black,twine-check
55

66
[testenv]
77
passenv = GITLAB_IMAGE GITLAB_TAG

0 commit comments

Comments
 (0)