From 820acaceb75d6ee38ce5cac3eb119900b7f0ff10 Mon Sep 17 00:00:00 2001 From: nojaf Date: Wed, 11 Dec 2024 13:01:10 +0100 Subject: [PATCH] Check last exit code in same run --- .github/workflows/test.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3e6b434..76c0d95 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -65,13 +65,11 @@ jobs: - name: Build package run: uv run -m mlflow_go.lib -- . . - name: run pytest - run: uv run pytest -sv --debug --log-cli-level=DEBUG --confcutdir=. -k "not [file" .mlflow.repo/tests/tracking/test_model_registry.py + run: uv run pytest -sv --debug --log-cli-level=DEBUG --confcutdir=. -k "not [file" .mlflow.repo/tests/tracking/test_model_registry.py ; echo $? env: MLFLOW_GO_LIBRARY_PATH: ${{ github.workspace }} PYTHONLOGGING: DEBUG continue-on-error: true - - name: last exit code - run: echo $? - name: cat debug run: cat pytestdebug.log # - name: Run integration tests