We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b32801d commit 4a412f6Copy full SHA for 4a412f6
gooddata-pipelines/Makefile
@@ -1,6 +1,16 @@
1
# (C) 2025 GoodData Corporation
2
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
+# Skip tests if running Python 3.9 from CI (gooddata-pipelines doesn't support py39)
+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
9
10
+.PHONY: test
11
+test:
12
13
14
+else
15
include ../project_common.mk
16
+endif
0 commit comments