From c80fbbe4bea480a79438aaa3043b2c0c329c3a00 Mon Sep 17 00:00:00 2001 From: ignacioct Date: Fri, 26 Apr 2024 11:31:37 +0200 Subject: [PATCH] fixing installations --- .github/workflows/integration-tests.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index a9f274e..91ccc02 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -37,9 +37,6 @@ jobs: with: path: ${{ env.CONDA }}/envs key: conda-${{ runner.os }}--${{ runner.arch }}--${{ steps.get-date.outputs.today }}-${{ hashFiles('environment_dev.yml') }}-${{ env.CACHE_NUMBER }} - - name: Update environment - if: steps.cache.outputs.cache-hit != 'true' - run: mamba env update -n argilla -f environment_dev.yml - name: Cache pip 👜 uses: actions/cache@v3 with: @@ -59,7 +56,7 @@ jobs: env: ARGILLA_ENABLE_TELEMETRY: 0 run: | - pip install -e ".[server]" + pip install argilla ".[server]" python -m argilla server database migrate python -m argilla server database users create_default python -m argilla server start &