Skip to content

Commit 66cbfb6

Browse files
fix(ci): fix typo in notebook skip list for transport_cuopt
'trnsport_cuopt' → 'transport_cuopt': the missing 'a' meant the pattern never matched, so GAMSPy_integration_example/transport_cuopt.ipynb was never skipped. It ran and failed with: gmscuopt: error while loading shared libraries: libcublas.so.13: cannot open shared object file The GAMS cuOpt integration requires LD_LIBRARY_PATH configuration that the conda notebook test environment does not provide, so the notebook is intentionally skipped until that setup is in place. Fixes: https://github.com/NVIDIA/cuopt/actions/runs/28426561531/job/84404065735 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 6acaf91 commit 66cbfb6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ci/utils/nbtest.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
# SPDX-FileCopyrightText: Copyright (c) 2019-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
3+
# SPDX-FileCopyrightText: Copyright (c) 2019-2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
44
# SPDX-License-Identifier: Apache-2.0
55
#
66
# This script executes Jupyter notebooks directly using nbconvert.
@@ -34,7 +34,7 @@ for nb in "$@"; do
3434

3535
# Skip notebooks that are not yet supported
3636
SKIP_NOTEBOOKS=(
37-
"trnsport_cuopt"
37+
"transport_cuopt"
3838
"Production_Planning_Example_Pulp"
3939
"Simple_LP_pulp"
4040
"Simple_MIP_pulp"

0 commit comments

Comments
 (0)