File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed
Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -45,14 +45,22 @@ jobs:
4545 pytest tests/scenario_tests_async/
4646 pytest tests/adapter_tests_async/
4747 fi
48- - name : Run pytype verification & codecov
48+ - name : Run pytype verification
49+ run : |
50+ python_version=`python -V`
51+ if [ ${python_version:7:3} == "3.8" ]; then
52+ pip install -e ".[async]"
53+ pip install -e ".[adapter]"
54+ pip install "pytype" && pytype slack_bolt/
55+ fi
56+
57+ - name : Run all tests for codecov
4958 run : |
5059 python_version=`python -V`
5160 # TODO: As Python 3.6 works the most stably on GitHub Actions,
5261 # we use the version for code coverage and async tests
5362 if [ ${python_version:7:3} == "3.6" ]; then
5463 pip install -e ".[async]"
5564 pip install -e ".[adapter]"
56- pip install "pytype" && pytype slack_bolt/
5765 pytest --cov=slack_bolt/ && bash <(curl -s https://codecov.io/bash)
5866 fi
You can’t perform that action at this time.
0 commit comments