Skip to content

Commit 4a412f6

Browse files
committed
skip py39 without multiplication
1 parent b32801d commit 4a412f6

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

gooddata-pipelines/Makefile

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
# (C) 2025 GoodData Corporation
22

3-
# Override the default test environments to exclude Python 3.9, which is not supported by gooddata-pipelines package
4-
TEST_ENVS = py313,py312,py311,py310
3+
# Skip tests if running Python 3.9 from CI (gooddata-pipelines doesn't support py39)
4+
ifeq ($(TEST_ENVS),py39)
5+
.PHONY: test-ci
6+
test-ci:
7+
@echo "Skipping tests for Python 3.9 - gooddata-pipelines doesn't support this version"
8+
@exit 0
59

10+
.PHONY: test
11+
test:
12+
@echo "Skipping tests for Python 3.9 - gooddata-pipelines doesn't support this version"
13+
@exit 0
14+
else
615
include ../project_common.mk
16+
endif

0 commit comments

Comments
 (0)