We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b5d354 commit df35180Copy full SHA for df35180
.github/workflows/tests.yml
@@ -7,7 +7,8 @@ on:
7
8
jobs:
9
build:
10
- runs-on: ubuntu-latest
+ # Avoiding -latest due to https://github.com/actions/setup-python/issues/162
11
+ runs-on: ubuntu-20.04
12
timeout-minutes: 10
13
strategy:
14
matrix:
@@ -50,7 +51,7 @@ jobs:
50
51
pytest tests/adapter_tests/django/
52
- name: Run tests for HTTP Mode adapters (Falcon 3.x)
53
run: |
- pytest tests/adapter_tests/falcon/
54
+ pytest tests/adapter_tests/falcon/
55
- name: Run tests for HTTP Mode adapters (Falcon 2.x)
56
57
# Falcon 2.x does not support Python 3.11 or newer
0 commit comments