Skip to content

Commit

Permalink
Add test action for urllib3 1.x
Browse files Browse the repository at this point in the history
  • Loading branch information
nateprewitt committed Jul 28, 2023
1 parent 86564e7 commit 5fe2614
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,24 @@ jobs:
uses: codecov/codecov-action@v3
with:
directory: tests


urllib3:
name: 'urllib3 1.x'
runs-on: 'ubuntu-latest'
strategy:
fail-fast: true

steps:
- uses: actions/checkout@v3
- name: 'Set up Python 3.10'
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
python scripts/ci/install
python -m pip install "urllib3<2"
- name: Run tests
run: |
python scripts/ci/run-tests --with-cov --with-xdist

0 comments on commit 5fe2614

Please sign in to comment.