Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
getzze committed Sep 20, 2024
1 parent 4414c77 commit 51c1371
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -118,9 +118,6 @@ jobs:
- name: Install tox-uv
run: python -Im pip install tox-uv

- name: Test versions
run: python -c "import urllib3; print(urllib3.__version__); from urllib3.connectionpool import VerifiedHTTPSConnection"

- name: Run tests
env:
COVERAGE_FILE: ".coverage.${{ matrix.os }}.${{ matrix.python-version }}"
Expand Down
8 changes: 6 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,9 @@ commands = {[testenv:coverage]commands}
[testenv:py3{,.}{8,9}-coverage]
# dependency issue
deps = urllib3<2
commands = {[testenv:coverage]commands}
commands =
python -c "import urllib3; print(urllib3.__version__); from urllib3.connectionpool import VerifiedHTTPSConnection"
{[testenv:coverage]commands}


[testenv:coverage-core]
Expand All @@ -80,7 +82,9 @@ commands = {[testenv:coverage-core]commands}
[testenv:py3{,.}{8,9}-coverage-core]
# dependency issue
deps = urllib3<2
commands = {[testenv:coverage]commands}
commands =
python -c "import urllib3; print(urllib3.__version__); from urllib3.connectionpool import VerifiedHTTPSConnection"
{[testenv:coverage-core]commands}


[testenv:pre-commit]
Expand Down

0 comments on commit 51c1371

Please sign in to comment.