File tree Expand file tree Collapse file tree 2 files changed +12
-7
lines changed
Expand file tree Collapse file tree 2 files changed +12
-7
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -13,9 +13,14 @@ fastapi>=0.70.0,<1
1313Flask>=1,<4
1414Werkzeug>=2,<4
1515pyramid>=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
1620sanic>=20,<21; python_version=="3.6"
1721sanic>=21,<24; python_version>"3.6" and python_version<="3.8"
1822sanic>=21,<26; python_version>"3.8"
23+
1924starlette>=0.19.1,<1
2025tornado>=6,<7
2126uvicorn<1 # The oldest version can vary among Python runtime versions
You can’t perform that action at this time.
0 commit comments