Skip to content

Commit 52dc2d9

Browse files
ci: Use local lib-rt in "interpreted" job
Signed-off-by: Edgar Ramírez Mondragón <edgarrm358@gmail.com>
1 parent 106e194 commit 52dc2d9

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

.github/workflows/test.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -226,6 +226,10 @@ jobs:
226226
- name: Setup tox environment
227227
run: |
228228
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
229233
- name: Test
230234
run: tox run -e ${{ matrix.toxenv }} --skip-pkg-install -- ${{ matrix.tox_extra_args }}
231235
continue-on-error: ${{ matrix.allow_failure == 'true' }}

0 commit comments

Comments
 (0)