-
Notifications
You must be signed in to change notification settings - Fork 254
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
test: fix broken tests due to wild card import #1240
test: fix broken tests due to wild card import #1240
Conversation
@@ -11,6 +11,7 @@ jobs: | |||
runs-on: ubuntu-20.04 | |||
timeout-minutes: 10 | |||
strategy: | |||
fail-fast: false |
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 is to allow maintainers to easily tell what versions of python may be affected by failing CI tests
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #1240 +/- ##
=======================================
Coverage 90.96% 90.96%
=======================================
Files 222 222
Lines 7501 7501
=======================================
Hits 6823 6823
Misses 678 678 ☔ View full report in Codecov by Sentry. |
@@ -16,7 +16,7 @@ pyramid>=1,<3 | |||
sanic>=20,<21; python_version=="3.6" | |||
sanic>=21,<24; python_version>"3.6" and python_version<="3.8" | |||
sanic>=21,<25; python_version>"3.8" | |||
starlette>=0.14,<1 | |||
starlette>=0.19.1,<1 |
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.
starlette 0.19.1 is the latest version of this package that supports python 3.6
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.
✅ LGTM! Thanks for the review comments as well! 🙇🏻
Summary
The unit tests of #1239 are failing due to wild card imports of adapter dependencies, this PR aims to update the unit tests to allow them to pass with the changes introduced to dependencies
Testing
Run the unit tests
Category
slack_bolt.App
and/or its core componentsslack_bolt.async_app.AsyncApp
and/or its core componentsslack_bolt.adapter
/docs
Requirements
Please read the Contributing guidelines and Code of Conduct before creating this issue or pull request. By submitting, you are agreeing to those rules.
./scripts/install_all_and_run_tests.sh
after making the changes.