Skip to content

Commit 9b31477

Browse files
authored
Fix CI by disabling it on 3.11 (#12003)
1 parent 5918919 commit 9b31477

File tree

1 file changed

+20
-19
lines changed

1 file changed

+20
-19
lines changed

.github/workflows/test.yml

Lines changed: 20 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -113,22 +113,23 @@ jobs:
113113
- name: Test
114114
run: tox -e ${{ matrix.toxenv }} --skip-pkg-install -- ${{ matrix.tox_extra_args }}
115115

116-
python-nightly:
117-
runs-on: ubuntu-latest
118-
name: Test suite with Python nightly
119-
steps:
120-
- uses: actions/checkout@v2
121-
- uses: actions/setup-python@v2
122-
with:
123-
python-version: '3.11-dev'
124-
- name: Install tox
125-
run: |
126-
pip install -U pip==21.2.3 setuptools
127-
pip install --upgrade 'setuptools!=50' virtualenv==20.4.7 tox==3.20.1
128-
- name: Setup tox environment
129-
run: tox -e py --notest
130-
- name: Test
131-
run: tox -e py --skip-pkg-install -- "-n 2"
132-
continue-on-error: true
133-
- name: Mark as a success
134-
run: exit 0
116+
# TODO: re-enable when `typed-ast` will be fixed for `python==3.11`
117+
# python-nightly:
118+
# runs-on: ubuntu-latest
119+
# name: Test suite with Python nightly
120+
# steps:
121+
# - uses: actions/checkout@v2
122+
# - uses: actions/setup-python@v2
123+
# with:
124+
# python-version: '3.11-dev'
125+
# - name: Install tox
126+
# run: |
127+
# pip install -U pip==21.2.3 setuptools
128+
# pip install --upgrade 'setuptools!=50' virtualenv==20.4.7 tox==3.20.1
129+
# - name: Setup tox environment
130+
# run: tox -e py --notest
131+
# - name: Test
132+
# run: tox -e py --skip-pkg-install -- "-n 2"
133+
# continue-on-error: true
134+
# - name: Mark as a success
135+
# run: exit 0

0 commit comments

Comments
 (0)