From b2754a9108b078c2b5047f5ebb22ef3ed556331c Mon Sep 17 00:00:00 2001 From: Ryan Kassab <33270781+kassabry@users.noreply.github.com> Date: Mon, 27 Nov 2023 15:46:35 -0600 Subject: [PATCH] Update test.yml Added the pip install -e . that I forgot in the original update --- .github/workflows/test.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c3d8fa5..aa9fb9a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,6 +24,10 @@ jobs: - name: Log conda environment shell: bash --login {0} run: conda list + # Activate the installed packages + - name: Install active_learning_dd package + shell: bash --login {0} + run: pip install -e . # Tests that the regression training code runs in the conda environment - name: Test BT_Clustering shell: bash --login {0}