Skip to content

Commit 80890c3

Browse files
committed
Update test matrix
1 parent f7cb773 commit 80890c3

File tree

3 files changed

+7
-12
lines changed

3 files changed

+7
-12
lines changed

setup.cfg

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,12 @@ classifiers =
1515
License :: OSI Approved :: MIT License
1616
Natural Language :: English
1717
Programming Language :: Python :: 2
18-
Programming Language :: Python :: 2.6
1918
Programming Language :: Python :: 2.7
2019
Programming Language :: Python :: 3
21-
Programming Language :: Python :: 3.3
22-
Programming Language :: Python :: 3.4
23-
Programming Language :: Python :: 3.5
2420
Programming Language :: Python :: 3.6
2521
Programming Language :: Python :: 3.7
2622
Programming Language :: Python :: 3.8
23+
Programming Language :: Python :: 3.9
2724

2825
[options]
2926
zip_safe = False
@@ -94,4 +91,4 @@ omit =
9491
[coverage:report]
9592
exclude_lines =
9693
pragma: no cover
97-
@abstract
94+
@abstract

tests/conftest.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,5 @@
22

33
if sys.version_info > (3,):
44
collect_ignore = ["test_django_channels.py"]
5-
if sys.version_info < (3, 6):
6-
collect_ignore.append("test_gevent.py")
75
else:
86
collect_ignore = ["test_aiohttp.py", "test_base_async.py"]

tox.ini

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[tox]
2-
envlist =
2+
envlist =
33
coverage_setup
4-
py27, py35, py36, py37, py38, flake8
4+
py27, py36, py37, py38, py39, flake8
55
coverage_report
66

77
[travis]
88
python =
9-
3.8: py38, flake8
9+
3.9: py39, flake8
10+
3.8: py38
1011
3.7: py37
1112
3.6: py36
12-
3.5: py35
1313
2.7: py27
1414

1515
[testenv]
@@ -33,4 +33,4 @@ commands =
3333
coverage html
3434
coverage xml
3535
coverage report --include="tests/*" --fail-under=100 -m
36-
coverage report --omit="tests/*" # --fail-under=90 -m
36+
coverage report --omit="tests/*" # --fail-under=90 -m

0 commit comments

Comments
 (0)