Skip to content

Commit

Permalink
Disable tests failing in non-experimental mode (#5123)
Browse files Browse the repository at this point in the history
  • Loading branch information
kintel committed May 4, 2024
1 parent 48fb28b commit dcce79d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/non-experimental.yml
Expand Up @@ -4,6 +4,7 @@ on:
push: push:
branches: branches:
- master - master
- "*-non-experimental"
workflow_dispatch: workflow_dispatch:


jobs: jobs:
Expand Down
9 changes: 9 additions & 0 deletions tests/CMakeLists.txt
Expand Up @@ -1366,6 +1366,15 @@ list(APPEND NEF3_BROKEN_TESTS
csgpngtest_nef3_broken csgpngtest_nef3_broken
) )


# Disable tests broken due to https://github.com/openscad/openscad/issues/3567
if (NOT EXPERIMENTAL)
set_tests_properties(
cgalpngtest_linear_extrude-scale-zero-tests
csgpngtest_linear_extrude-scale-zero-tests
PROPERTIES DISABLED TRUE
)
endif()

# Platform specific test disable # Platform specific test disable
if(APPLE) if(APPLE)
set_tests_properties( set_tests_properties(
Expand Down

0 comments on commit dcce79d

Please sign in to comment.