From 6bf82097edede69aec729a35d7414327fef43918 Mon Sep 17 00:00:00 2001 From: Mark Harris <783069+harrism@users.noreply.github.com> Date: Thu, 1 Aug 2024 23:57:26 +1000 Subject: [PATCH] Unskip taxi notebook from CI (#1422) #1407 skipped the taxi dropoffs notebook due to performance regression fixed in #1418, so this PR re-enables the notebook in CI by removing it from SKIPNBS in ci/test_noteboks.sh. Authors: - Mark Harris (https://github.com/harrism) Approvers: - https://github.com/jakirkham - Michael Wang (https://github.com/isVoid) - James Lamb (https://github.com/jameslamb) URL: https://github.com/rapidsai/cuspatial/pull/1422 --- ci/test_notebooks.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/test_notebooks.sh b/ci/test_notebooks.sh index 0faa95294..44353684a 100755 --- a/ci/test_notebooks.sh +++ b/ci/test_notebooks.sh @@ -29,7 +29,7 @@ NBTEST="$(realpath "$(dirname "$0")/utils/nbtest.sh")" # Add notebooks that should be skipped here # (space-separated list of filenames without paths) -SKIPNBS="binary_predicates.ipynb cuproj_benchmark.ipynb nyc_taxi_years_correlation.ipynb" +SKIPNBS="binary_predicates.ipynb cuproj_benchmark.ipynb" EXITCODE=0 trap "EXITCODE=1" ERR