We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9006d7 commit d89184dCopy full SHA for d89184d
tests/e2e-prow/rhoai/run-tests.sh
@@ -53,10 +53,16 @@ command -v uv >/dev/null 2>&1 || { echo "❌ uv not available after install"; ex
53
ts "End: ensure uv is available"
54
55
ts "Start: uv sync"
56
-uv sync
+# dev group provides behave (Makefile test-e2e uses uv run behave)
57
+uv sync --group dev
58
ts "End: uv sync"
59
-ts "Start: make test-e2e"
60
+ts "Start: e2e test-e2e"
61
echo "Running e2e test suite..."
-make test-e2e
62
-ts "End: make test-e2e"
+# Makefile target is: uv run behave ... (Konflux/ubi-minimal often has no make)
63
+if command -v make >/dev/null 2>&1; then
64
+ make test-e2e
65
+else
66
+ uv run behave --color --format pretty --tags=-skip -D dump_errors=true @tests/e2e/test_list.txt
67
+fi
68
+ts "End: e2e test-e2e"
0 commit comments