Skip to content

Commit

Permalink
skip tests outside docker for now
Browse files Browse the repository at this point in the history
  • Loading branch information
samansmink committed Oct 15, 2024
1 parent f564633 commit df506fd
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions makefiles/duckdb_extension.Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,11 @@ TEST_RELEASE_TARGET=test_release_internal
TEST_DEBUG_TARGET=test_debug_internal
TEST_RELDEBUG_TARGET=test_reldebug_internal

# Disable testing outside docker: the unittester is currently dynamically linked by default
ifeq($(LINUX_TESTS_OUTSIDE_DOCKER),1)
SKIP_TESTS=1
endif

ifeq ($(SKIP_TESTS),1)
TEST_RELEASE_TARGET=tests_skipped
TEST_DEBUG_TARGET=tests_skipped
Expand Down

0 comments on commit df506fd

Please sign in to comment.