Skip to content

Commit b0d50d2

Browse files
Merge branch 'main' into zimeg-test-schedule
2 parents 4c46221 + 5778bf5 commit b0d50d2

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed

.github/workflows/tests.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -55,20 +55,20 @@ jobs:
5555
- name: Install async dependencies
5656
run: |
5757
pip install -r requirements/async.txt
58-
- name: Run tests for HTTP Mode adapters (ASGI)
59-
run: |
60-
# Requires async test dependencies
61-
pytest tests/adapter_tests/asgi/ --junitxml=reports/test_adapter_asgi.xml
6258
- name: Run tests for Socket Mode adapters
6359
run: |
6460
# Requires async test dependencies
6561
pytest tests/adapter_tests/socket_mode/ --junitxml=reports/test_adapter_socket_mode.xml
66-
- name: Run tests for HTTP Mode adapters (asyncio-based libraries)
67-
run: |
68-
pytest tests/adapter_tests_async/ --junitxml=reports/test_adapter_async.xml
6962
- name: Install all dependencies
7063
run: |
7164
pip install -r requirements/testing.txt
65+
- name: Run tests for HTTP Mode adapters (ASGI)
66+
run: |
67+
# Requires async test dependencies
68+
pytest tests/adapter_tests/asgi/ --junitxml=reports/test_adapter_asgi.xml
69+
- name: Run tests for HTTP Mode adapters (asyncio-based libraries)
70+
run: |
71+
pytest tests/adapter_tests_async/ --junitxml=reports/test_adapter_async.xml
7272
- name: Run asynchronous tests
7373
run: |
7474
pytest tests/slack_bolt_async/ --junitxml=reports/test_slack_bolt_async.xml

requirements/adapter.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,14 @@ fastapi>=0.70.0,<1
1313
Flask>=1,<4
1414
Werkzeug>=2,<4
1515
pyramid>=1,<3
16+
17+
# Sanic and its dependencies
18+
# Note: Sanic imports tracerite with wild card versions
19+
tracerite<1.1.2; python_version<="3.8" # older versions of python are not compatible with tracerite>1.1.2
1620
sanic>=20,<21; python_version=="3.6"
1721
sanic>=21,<24; python_version>"3.6" and python_version<="3.8"
1822
sanic>=21,<26; python_version>"3.8"
23+
1924
starlette>=0.19.1,<1
2025
tornado>=6,<7
2126
uvicorn<1 # The oldest version can vary among Python runtime versions

0 commit comments

Comments
 (0)