Skip to content

Commit df35180

Browse files
CI python 3.6 bug fix (#776)
1 parent 4b5d354 commit df35180

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ on:
77

88
jobs:
99
build:
10-
runs-on: ubuntu-latest
10+
# Avoiding -latest due to https://github.com/actions/setup-python/issues/162
11+
runs-on: ubuntu-20.04
1112
timeout-minutes: 10
1213
strategy:
1314
matrix:
@@ -50,7 +51,7 @@ jobs:
5051
pytest tests/adapter_tests/django/
5152
- name: Run tests for HTTP Mode adapters (Falcon 3.x)
5253
run: |
53-
pytest tests/adapter_tests/falcon/
54+
pytest tests/adapter_tests/falcon/
5455
- name: Run tests for HTTP Mode adapters (Falcon 2.x)
5556
run: |
5657
# Falcon 2.x does not support Python 3.11 or newer

0 commit comments

Comments
 (0)