Skip to content

Commit d89184d

Browse files
author
Radovan Fuchs
committed
fix
1 parent b9006d7 commit d89184d

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

tests/e2e-prow/rhoai/run-tests.sh

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,16 @@ command -v uv >/dev/null 2>&1 || { echo "❌ uv not available after install"; ex
5353
ts "End: ensure uv is available"
5454

5555
ts "Start: uv sync"
56-
uv sync
56+
# dev group provides behave (Makefile test-e2e uses uv run behave)
57+
uv sync --group dev
5758
ts "End: uv sync"
5859

59-
ts "Start: make test-e2e"
60+
ts "Start: e2e test-e2e"
6061
echo "Running e2e test suite..."
61-
make test-e2e
62-
ts "End: make test-e2e"
62+
# 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

Comments
 (0)