From 31d1618a8a981aa515adb1ad9b3072e9cc38d182 Mon Sep 17 00:00:00 2001 From: eberrigan Date: Wed, 17 Apr 2024 09:27:35 -0700 Subject: [PATCH] print env info --- .github/workflows/build_manual.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_manual.yml b/.github/workflows/build_manual.yml index c8c4c8497..ef77cbe7a 100644 --- a/.github/workflows/build_manual.yml +++ b/.github/workflows/build_manual.yml @@ -106,10 +106,11 @@ jobs: - name: Test built conda package shell: bash -l {0} run: | - echo "$BUILD_PATH" + echo "Build path is: $BUILD_PATH" conda deactivate mamba create -y -n sleap_test -c file://$BUILD_PATH -c sleap/label/dev -c conda-forge -c nvidia -c anaconda sleap conda activate sleap_test + echo conda list python -c "import sleap; print(sleap.__version__)" echo "Test completed using sleap version: $(python -c 'import sleap; print(sleap.__version__)')"