Skip to content

Commit

Permalink
ci: split out rpython test_rlist.py tests
Browse files Browse the repository at this point in the history
these cause occasional segfaults when run under pypy on linux in the
same pytest session as the rest of the tests
  • Loading branch information
olliemath committed Jan 5, 2024
1 parent 2cf3cb9 commit b1da807
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/rpython-unit-tets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,12 @@ jobs:
sudo apt-get install -y libgc-dev
pypy2 -m pip install --user hypothesis==4.39.3
- name: Test RTyper
run: pypy2 pytest.py rpython/rtyper -v
# Note we split out test_rlist.py due to occasional segfaults
# with test_memoryerror that only occur when run with the full
# test suite
run: |
pypy2 pytest.py rpython/rtyper --ignore=rpython/rtyper/test/test_rlist.py
pypy2 pytest.py -v rpython/rtyper/test/test_rlist.py
test-translator:
runs-on: ${{ matrix.os }}
Expand Down

0 comments on commit b1da807

Please sign in to comment.