From a828dfd67ac4cbd476fb5137e2ae3a2f278addea Mon Sep 17 00:00:00 2001 From: "lukas.gehrig" Date: Mon, 2 Oct 2023 10:29:52 +0200 Subject: [PATCH] removed test-user-package because testing is now happening before pushing the image :high_heel: --- .github/workflows/test-user-package.yml | 35 ------------------------- 1 file changed, 35 deletions(-) delete mode 100644 .github/workflows/test-user-package.yml diff --git a/.github/workflows/test-user-package.yml b/.github/workflows/test-user-package.yml deleted file mode 100644 index 103afb95..00000000 --- a/.github/workflows/test-user-package.yml +++ /dev/null @@ -1,35 +0,0 @@ -name: Test User Package - -on: - workflow_run: - workflows: ["Conda Build"] - types: - - completed - -jobs: - conda-build: - runs-on: ubuntu-latest - if: ${{ github.event.workflow_run.conclusion == 'success' }} - steps: - - name: Install Conda - uses: conda-incubator/setup-miniconda@v2 - with: - auto-update-conda: true - - name: Set variables, Install Package & Dependencies - shell: bash -l {0} - run: | - export IS_GITHUB_RUNNER=true - export RUN_NOTEBOOK_TESTS=false - conda install -y -n base conda-libmamba-solver - conda config --set solver libmamba - conda create -y -n karabo-env python=3.9 - conda activate karabo-env - conda install -y -c nvidia/label/cuda-11.7.0 -c i4ds -c conda-forge karabo-pipeline=${{ env.KARABO_VERSION }} - pip install ipykernel - python -m ipykernel install --user --name python3 - - name: Test Package - shell: bash -l {0} - run: | - conda activate karabo-env - pytest --pyargs karabo.test -