From ea5e9ab0760a1eb69502e69f21599f3000d42bf9 Mon Sep 17 00:00:00 2001 From: Jitse Niesen Date: Thu, 18 Apr 2024 15:17:45 +0100 Subject: [PATCH] CI: Put Spyder source tree outside the plugin source tree --- .github/workflows/run-tests.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 32d0738..5ddb751 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -40,23 +40,23 @@ jobs: uses: actions/checkout@v3 with: repository: 'spyder-ide/spyder' - path: 'spyder' + path: '../spyder' - name: Install Spyder's dependencies (main) if: matrix.SPYDER_SOURCE == 'git' shell: bash -l {0} - run: mamba env update --file spyder/requirements/main.yml + run: mamba env update --file ../spyder/requirements/main.yml - name: Install Spyder's dependencies (Linux) if: matrix.SPYDER_SOURCE == 'git' && matrix.OS == 'ubuntu' shell: bash -l {0} - run: mamba env update --file spyder/requirements/linux.yml + run: mamba env update --file ../spyder/requirements/linux.yml - name: Install Spyder's dependencies (Mac / Windows) if: matrix.SPYDER_SOURCE == 'git' && matrix.OS != 'ubuntu' shell: bash -l {0} - run: mamba env update --file spyder/requirements/${{ matrix.OS }}.yml + run: mamba env update --file ../spyder/requirements/${{ matrix.OS }}.yml - name: Install Spyder from source if: matrix.SPYDER_SOURCE == 'git' shell: bash -l {0} - run: pip install --no-deps -e spyder + run: pip install --no-deps -e ../spyder - name: Install plugin dependencies (without Spyder) if: matrix.SPYDER_SOURCE == 'git' shell: bash -l {0}