Skip to content

Commit a00a3e9

Browse files
authored
Update the CI build settings
1 parent 94015f6 commit a00a3e9

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/ci-build.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ jobs:
3535
pytest tests/adapter_tests/
3636
- name: Run async tests
3737
run: |
38-
# As the tests here are often slow on GitHub Actions,
39-
# we pick up only one Python version for it.
4038
python_version=`python -V`
39+
# TODO: As Python 3.6 works the most stably on GitHub Actions,
40+
# we use the version for code coverage and async tests
4141
if [ ${python_version:7:3} == "3.6" ]; then
4242
pip install -e ".[async]"
4343
pip install "pytest-asyncio<1"
@@ -48,7 +48,9 @@ jobs:
4848
- name: Run pytype verification & codecov
4949
run: |
5050
python_version=`python -V`
51-
if [ ${python_version:7:3} == "3.8" ]; then
51+
# TODO: As Python 3.6 works the most stably on GitHub Actions,
52+
# we use the version for code coverage and async tests
53+
if [ ${python_version:7:3} == "3.6" ]; then
5254
pip install -e ".[async]"
5355
pip install -e ".[adapter]"
5456
pip install "pytype" && pytype slack_bolt/

0 commit comments

Comments
 (0)