-
Notifications
You must be signed in to change notification settings - Fork 276
health: increase CI coverage #1276
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
e507e14
7071bcd
c5358a9
12b6bc9
a7035f0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -68,6 +68,9 @@ jobs: | |
| - name: Run tests for HTTP Mode adapters (Tornado) | ||
| run: | | ||
| pytest tests/adapter_tests/tornado/ | ||
| - name: Run tests for HTTP Mode adapters (WSGI) | ||
| run: | | ||
| pytest tests/adapter_tests/wsgi/ | ||
| - name: Install async dependencies | ||
| run: | | ||
| pip install -r requirements/async.txt | ||
|
|
@@ -82,3 +85,10 @@ jobs: | |
| run: | | ||
| # Requires async test dependencies | ||
| pytest tests/adapter_tests/asgi/ | ||
| - name: Install all dependencies | ||
| run: | | ||
| pip install -r requirements/testing.txt | ||
|
Comment on lines
+88
to
+90
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. QQ: Should this be with the "Install all dependencies" job? It's not super clear to me which steps use which dependencies and TBH I wouldn't be against separating
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yesss I see what you mean it might be better to do thins in a separate PR 🤔 |
||
| - name: Run asynchronous tests | ||
| run: | | ||
| pytest tests/slack_bolt_async/ | ||
| pytest tests/scenario_tests_async/ | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This seems to match the other test setups, but I'm wondering if this warning is expected or not?
🔗 https://github.com/slackapi/bolt-python/actions/runs/13931970838/job/38991049073#step:16:23
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch 💯 we can ignore this warning since it comes from trying to configure
pytest-asynciowhen it is not installed