Skip to content

Commit 3e8d4d6

Browse files
committed
ci: decouple update_nmisp_py from red test_ipynb_colab (#440)
test_ipynb_colab is chronically red (030 TF+PyTorch dead-kernel), which silently kept the nmisp_py helper-package sync skipped. Drop it from update_nmisp_py 'needs'; still gated on test_ipynb_linux + test_ipynb_native so the sync runs only when real notebook tests pass. Refs #440.
1 parent 2595075 commit 3e8d4d6

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/conda_env_test.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,11 @@ jobs:
214214
python -m pytest -n auto -k 'not (links or update_nmisp_py)' ./tests
215215
216216
update_nmisp_py:
217-
needs: [test_ipynb_linux, test_ipynb_native, test_ipynb_colab]
217+
# Decoupled from test_ipynb_colab: that job is chronically red due to the
218+
# 030 TF+PyTorch dead-kernel notebook, which was silently keeping the
219+
# helper-package sync skipped (issue #440). Still gated behind the native
220+
# notebook test suites so nmisp_py only syncs when real tests pass.
221+
needs: [test_ipynb_linux, test_ipynb_native]
218222
if: github.actor != 'dependabot[bot]'
219223
name: Update nmisp_py
220224
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)