We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 106e194 commit 52dc2d9Copy full SHA for 52dc2d9
1 file changed
.github/workflows/test.yml
@@ -226,6 +226,10 @@ jobs:
226
- name: Setup tox environment
227
run: |
228
tox run -e ${{ matrix.toxenv }} --notest
229
+ - name: Install local librt in tox environment
230
+ if: ${{ !matrix.test_mypyc && matrix.toxenv == 'py' }}
231
+ # Use local version of librt so that fixes not yet in a PyPI release are available.
232
+ run: tox exec -e ${{ matrix.toxenv }} -- pip install -U mypyc/lib-rt
233
- name: Test
234
run: tox run -e ${{ matrix.toxenv }} --skip-pkg-install -- ${{ matrix.tox_extra_args }}
235
continue-on-error: ${{ matrix.allow_failure == 'true' }}
0 commit comments