Skip to content

Fix C extension test import crash - use pytest.skip instead of exit(1) #3

Fix C extension test import crash - use pytest.skip instead of exit(1)

Fix C extension test import crash - use pytest.skip instead of exit(1) #3

Workflow file for this run

name: Python CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: |
cd python
pip install -e .[test]
- name: Run tests
run: |
cd python
python -m pytest tests/ --ignore=tests/test_c_extension_segfault_fix.py -x -v