Skip to content

Commit 484c0ba

Browse files
committed
Test also on Python 3.9.
1 parent d3348d1 commit 484c0ba

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.gitlab-ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ qa:
1111

1212
tests:
1313
script:
14-
- tox -e py27,py35,py36,py37,py38
14+
- tox -e py27,py35,py36,py37,py38,py39
1515

1616
Windows tests:
1717
extends: tests
@@ -38,14 +38,14 @@ Windows tests:
3838

3939
coverage:
4040
script:
41-
- tox -e py27-cov,py35-cov,py36-cov,py37-cov,py38-cov
41+
- tox -e py27-cov,py35-cov,py36-cov,py37-cov,py38-cov,py39-cov
4242
artifacts:
4343
paths:
4444
- coverage.xml
4545

4646
diffcov:
4747
script:
48-
- tox -e py27-diffcov,py35-diffcov,py36-diffcov,py37-diffcov,py38-diffcov
48+
- tox -e py27-diffcov,py35-diffcov,py36-diffcov,py37-diffcov,py38-diffcov,py39-diffcov
4949

5050
docs:
5151
script:

tox.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
# Coverage is missing on later version of Python
3-
envlist = {py27,py35,py36,py37,py38}{,-cov,-diffcov},qa,docs
3+
envlist = {py27,py35,py36,py37,py38,py39}{,-cov,-diffcov},qa,docs
44
skip_missing_interpreters = True
55

66

@@ -29,11 +29,11 @@ setenv =
2929
cov: COVERAGE_OPTIONS="-p"
3030
cov: COVERAGE_FILE={toxinidir}/.coverage
3131
py27: OMIT=3
32-
py35,py36,py37,py38: OMIT=2
32+
py35,py36,py37,py38,py39: OMIT=2
3333

3434

3535
[testenv:qa]
36-
basepython = python3.8
36+
basepython = python3.9
3737
commands =
3838
python -m flake8 importlib_resources
3939
mypy importlib_resources

0 commit comments

Comments
 (0)