From 83ecca22e99bdd6e5d4e179f5b33d12f14a15523 Mon Sep 17 00:00:00 2001 From: Paul Koch Date: Thu, 25 Jul 2024 16:10:36 -0700 Subject: [PATCH] asdfasdf --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1e90c6e69..129685d0f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -349,7 +349,7 @@ jobs: run: | install_file=$(echo bld/sdist/interpret_core-*.tar.gz) install_file=$(basename "$install_file" .tar.gz) - python -m pip install "bld/sdist/$install_file.tar.gz"[debug,notebook,plotly,lime,sensitivity,shap,linear,treeinterpreter,aplr,dash,skoperules,testing] + python -m pip install "bld/sdist/${install_file}.tar.gz"[debug,notebook,plotly,lime,sensitivity,shap,linear,treeinterpreter,aplr,dash,skoperules,testing] mkdir -p "tmp/zqmr/t" tar -xzvf "bld/sdist/$install_file.tar.gz" -C "tmp/zqmr/t" "$install_file/tests" cd "tmp/zqmr/t" @@ -358,11 +358,11 @@ jobs: if: ${{ startsWith(matrix.image, 'windows') }} run: | $install_file = Get-ChildItem -Path "bld/sdist" -Filter "interpret_core-*.tar.gz" - echo $install_file + Write-Output $install_file $install_file = $install_file[0].BaseName - echo $install_file + Write-Output $install_file $env:PATH += ';C:\Program Files\Microsoft Visual Studio\2022\Enterprise\MSBuild\Current\Bin' - python -m pip install "bld/sdist/$install_file.tar.gz"[debug,notebook,plotly,lime,sensitivity,shap,linear,treeinterpreter,aplr,dash,skoperules,testing] + python -m pip install "bld/sdist/${install_file}.tar.gz"[debug,notebook,plotly,lime,sensitivity,shap,linear,treeinterpreter,aplr,dash,skoperules,testing] New-Item -Path "tmp/zqmr" -ItemType Directory -Force New-Item -Path "tmp/zqmr/t" -ItemType Directory -Force tar -xzvf "bld/sdist/$install_file.tar.gz" -C "tmp/zqmr/t" "$install_file/tests"