Skip to content

Commit

Permalink
Check last exit code in same run
Browse files Browse the repository at this point in the history
  • Loading branch information
nojaf committed Dec 11, 2024
1 parent 3a4e178 commit 820acac
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 820acac

Please sign in to comment.