8000 [1.26] Speed up Python 3.11 CI by upgrading coverage · urllib3/urllib3@de6def1 · GitHub
[go: up one dir, main page]

8000
Skip to content

Commit de6def1

Browse files
authored
[1.26] Speed up Python 3.11 CI by upgrading coverage
1 parent b619b2e commit de6def1

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ jobs:
6969
- python-version: "2.7"
7070
os: ubuntu-latest
7171
experimental: false
72-
nox-session: google_brotli-2
73-
- python-version: "3.9"
72+
nox-session: google_brotli-2.7
73+
- python-version: "3.x"
7474
os: ubuntu-latest
7575
experimental: false
7676
nox-session: google_brotli-3

dev-requirements.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
mock==3.0.5
2-
coverage~=5.0
2+
coverage~=5.0;python_version<="2.7"
3+
coverage~=6.0;python_version>="3.6"
34
tornado==5.1.1;python_version<="2.7"
4-
tornado==6.1.0;python_version>"3.5"
5+
tornado==6.1.0;python_version>="3.6"
56
PySocks==1.7.1
67
# https://github.com/Anorov/PySocks/issues/131
78
win-inet-pton==1.1.0

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def test(session):
5050
tests_impl(session)
5151

5252

53-
@nox.session(python=["2", "3"])
53+
@nox.session(python=["2.7", "3"])
5454
def google_brotli(session):
5555
# https://pypi.org/project/Brotli/ is the Google version of brotli, so
5656
# install it separately and don't install our brotli extra (which installs

0 commit comments

Comments
 (0)
0