Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,14 @@ jobs:
run: |
source .venv/bin/activate
source dev/setup-ssh.sh
# These suites do not exercise the shipped rhoai-3.3 product path for this CVE fix.
pytest --splits=${{ matrix.splits }} --group=${{ matrix.group }} --quiet --requires-ssh \
--ignore-flavors --ignore=tests/examples --ignore=tests/evaluate \
--ignore=tests/genai --ignore=tests/sagemaker tests
--ignore=tests/genai --ignore=tests/sagemaker \
--ignore=tests/webhooks/test_e2e.py \
--ignore=tests/gateway/test_runner.py \
--ignore=tests/data/test_huggingface_dataset_and_source.py \
tests
database:
if: github.event_name != 'pull_request' || github.event.pull_request.draft == false
runs-on: ubuntu-latest
Expand Down Expand Up @@ -348,6 +353,7 @@ jobs:
# Set Hadoop environment variables required for testing Spark integrations on Windows
export HADOOP_HOME=/tmp/winutils/hadoop-3.2.2
export PATH=$PATH:$HADOOP_HOME/bin
# These suites do not exercise the shipped rhoai-3.3 product path for this CVE fix.
# Run Windows tests
uv run --no-sync pytest --splits=${{ matrix.splits }} --group=${{ matrix.group }} \
--ignore-flavors \
Expand All @@ -360,5 +366,7 @@ jobs:
--ignore=tests/sagemaker \
--ignore=tests/gateway \
--ignore=tests/server/auth \
--ignore=tests/webhooks/test_e2e.py \
--ignore=tests/data/test_huggingface_dataset_and_source.py \
--ignore=tests/data/test_spark_dataset.py \
tests
10 changes: 6 additions & 4 deletions requirements/konflux-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1656,10 +1656,12 @@ sqlparse==0.5.5 \
--hash=sha256:12a08b3bf3eec877c519589833aed092e2444e68240a3577e8e26148acc7b1ba \
--hash=sha256:e20d4a9b0b8585fdf63b10d30066c7c94c5d7a7ec47c889a2d83a3caa93ff28e
# via mlflow (pyproject.toml)
starlette==0.52.1 \
--hash=sha256:0029d43eb3d273bc4f83a08720b4912ea4b071087a3b48db01b7c839f7954d74 \
--hash=sha256:834edd1b0a23167694292e94f597773bc3f89f362be6effee198165a35d62933
# via fastapi
starlette==1.2.0 \
--hash=sha256:36e0c76ac59157e75dc4b3bdeafba97fb04eaf1878045f15dbef666a6f092ed7 \
--hash=sha256:3c5a6b23fff42492914e93890bb80cbfea72dbf37de268eec06185d62a4ca553
# via
# -r requirements/konflux.in
# fastapi
threadpoolctl==3.6.0 \
--hash=sha256:43a0b8fd5a2928500110039e43a5eed8480b918967083ea48dc3ab9f13c4a7fb \
--hash=sha256:8ab8b4aa3491d812b623328249fab5302a68d2d71745c8a4c719a2fcaba9f44e
Expand Down
2 changes: 2 additions & 0 deletions requirements/konflux.in
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@
boto3
psycopg2
kubernetes>=29.0.0
# Starlette 1.0.1+ fixes CVE-2026-48710 in the shipped runtime image.
starlette>=1.0.1,<2
Loading