Skip to content

Commit 55e4b8c

Browse files
committed
github actions test
1 parent 9be0206 commit 55e4b8c

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/tests.yaml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,7 @@ jobs:
1616
python-version: ["3.10","3.13"]
1717

1818
steps:
19-
- name: Workaround for cffi ImportError
20-
run: |
21-
export LD_PRELOAD=$(python -c "import sysconfig; print(sysconfig.get_config_var('LIBDIR'))")/libpython3.13.so
22-
pytest -v
19+
2320

2421
- uses: actions/checkout@v2
2522

@@ -33,6 +30,11 @@ jobs:
3330

3431
- run: pip install -e .[dev]
3532

33+
- name: Workaround for cffi ImportError
34+
run: |
35+
export LD_PRELOAD=$(python -c "import sysconfig; print(sysconfig.get_config_var('LIBDIR'))")/libpython3.13.so
36+
pytest -v
37+
3638
- run: pytest -v
3739

3840
examples:

0 commit comments

Comments
 (0)