File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -80,20 +80,20 @@ jobs:
8080 export CLARIFAI_PAT="$(uv run python scripts/key_for_tests.py --create-pat)"
8181 if [ "${{ github.event.pull_request.head.repo.full_name }}" = "${{ github.repository }}" ]; then
8282 # Run coverage for all but the container test
83- uv run pytest --cov=. --cov-report=xml:coverage/coverage.cobertura.xml --ignore=tests/runners/test_model_run_locally-container.py
83+ uv run pytest --cov=. --cov-report=xml:coverage/coverage.cobertura.xml --ignore=tests/runners/test_model_run_locally-container.py --ignore=tests/runners/test_model_run_locally.py
8484
8585 # Conditionally run the container test
8686 if [ "${{ steps.check_dockerfile_change.outputs.changed }}" = "true" ]; then
8787 uv run pytest --cov=. --cov-append --cov-report=xml:coverage/coverage.cobertura.xml tests/runners/test_model_run_locally-container.py
8888 fi
8989 elif [ "${{ inputs.PERIODIC_CHECKS }}" = "true" ]; then
90- uv run pytest -m "not coverage_only" --cov=. --cov-report=xml:coverage/coverage.cobertura.xml --ignore=tests/runners/test_model_run_locally-container.py
90+ uv run pytest -m "not coverage_only" --cov=. --cov-report=xml:coverage/coverage.cobertura.xml --ignore=tests/runners/test_model_run_locally-container.py --ignore=tests/runners/test_model_run_locally.py
9191
9292 if [ "${{ steps.check_dockerfile_change.outputs.changed }}" = "true" ]; then
9393 uv run pytest -m "not coverage_only" --cov=. --cov-append --cov-report=xml:coverage/coverage.cobertura.xml tests/runners/test_model_run_locally-container.py
9494 fi
9595 else
96- uv run pytest -m "not requires_secrets" --cov=. --cov-report=xml:coverage/coverage.cobertura.xml --ignore=tests/runners/test_model_run_locally-container.py
96+ uv run pytest -m "not requires_secrets" --cov=. --cov-report=xml:coverage/coverage.cobertura.xml --ignore=tests/runners/test_model_run_locally-container.py --ignore=tests/runners/test_model_run_locally.py
9797
9898 if [ "${{ steps.check_dockerfile_change.outputs.changed }}" = "true" ]; then
9999 uv run pytest -m "not requires_secrets" --cov=. --cov-append --cov-report=xml:coverage/coverage.cobertura.xml tests/runners/test_model_run_locally-container.py
You can’t perform that action at this time.
0 commit comments