summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJordan Cook <jordan.cook@pioneer.com>2021-08-14 15:29:54 -0500
committerJordan Cook <jordan.cook@pioneer.com>2021-08-14 21:58:30 -0500
commit1a366df42b1d8ad80925b37d464b4704bfed6ce6 (patch)
treea5f684a001a71e7926ba2ed83437619f53d4d206 /.github
parente99f21ac363f80e6895ccbf3ff989dff85e3f934 (diff)
downloadrequests-cache-1a366df42b1d8ad80925b37d464b4704bfed6ce6.tar.gz
Drop testing for requests <=0.21
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/deploy.yml5
1 files changed, 2 insertions, 3 deletions
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml
index 65b2e71..8bdb89f 100644
--- a/.github/workflows/deploy.yml
+++ b/.github/workflows/deploy.yml
@@ -27,7 +27,7 @@ jobs:
strategy:
matrix:
python-version: [3.7]
- requests-version: [2.17, 2.18, 2.19, 2.20.1, 2.21, 2.22, 2.23, 2.24, latest]
+ requests-version: [2.22, 2.23, 2.24, 2.25, latest]
fail-fast: false
services:
nginx:
@@ -69,12 +69,11 @@ jobs:
poetry install -v -E all
# Run unit + integration tests, with additional stress tests
- # Skip test for streaming responses; requires requests >= 2.19 (tested on latest version in build.yml)
- name: Run tests
run: |
source $VENV
pytest --numprocesses=auto tests/unit
- pytest tests/integration -k 'not test_response_decode'
+ pytest tests/integration
STRESS_TEST_MULTIPLIER=5 pytest tests/integration/ -k 'multithreaded'
# Deploy stable builds on tags only, and pre-release builds from manual trigger ("workflow_dispatch")