Skip to content

Commit

Permalink
jump boolean test on m1 - libigl bug
Browse files Browse the repository at this point in the history
  • Loading branch information
alemuntoni committed Mar 14, 2024
1 parent 8a21511 commit 975cd36
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/BuildAndTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,13 @@ jobs:
run: |
python -c 'import pymeshlab; pymeshlab.use_cpu_opengl()' #just for windows
- name: Run tests
if: matrix.os != 'macos-14'
run: |
pytest --pyargs pymeshlab -m "not glcontext"
- name: Run tests
if: matrix.os == 'macos-14'
run: |
pytest --pyargs pymeshlab -m "not glcontext and not m1_bug"
#- name: Upload PyMeshLab results
# uses: actions/upload-artifact@v4
# with:
Expand Down Expand Up @@ -216,5 +221,10 @@ jobs:
run: |
python -c 'import pymeshlab; pymeshlab.use_cpu_opengl()' #just for windows
- name: Run tests
if: matrix.os != 'macos-14'
run: |
pytest --pyargs pymeshlab -m "not glcontext"
- name: Run tests
if: matrix.os == 'macos-14'
run: |
pytest --pyargs pymeshlab -m "not glcontext and not m1_bug"
1 change: 1 addition & 0 deletions pymeshlab/tests/test_mesh_booleans.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
from . import samples_common


@pytest.mark.m1_bug
def test_mesh_booleans():
print('\n')
base_path = samples_common.samples_absolute_path()
Expand Down

0 comments on commit 975cd36

Please sign in to comment.