From ffe4a5f95624b8e83de500ea6833e260a4099446 Mon Sep 17 00:00:00 2001 From: MinchinWeb Date: Mon, 17 May 2021 21:28:49 -0600 Subject: [PATCH] [GitHub Actions] skip virtual environments altogether --- .../workflows/testing_external_plugins.yaml | 40 +++++++++---------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/.github/workflows/testing_external_plugins.yaml b/.github/workflows/testing_external_plugins.yaml index 05f915b7..ba136ca3 100644 --- a/.github/workflows/testing_external_plugins.yaml +++ b/.github/workflows/testing_external_plugins.yaml @@ -39,29 +39,29 @@ jobs: with: python-version: ${{ matrix.python-version }} - - name: poetry cache - uses: actions/cache@v2 - with: - path: .venv - key: ${{ runner.os }}-${{ hashFiles('poetry.lock') }}-${{ matrix.python-version }}-v2-namespace-plugins + # - name: poetry cache + # uses: actions/cache@v2 + # with: + # path: .venv + # key: ${{ runner.os }}-${{ hashFiles('poetry.lock') }}-${{ matrix.python-version }}-v2-namespace-plugins - - name: Create and Activate Virtual Environment (Linux) - if: startsWith(matrix.os, 'ubuntu') - run: | - python -m venv .venv - source .venv/bin/activate + # - name: Create and Activate Virtual Environment (Linux) + # if: startsWith(matrix.os, 'ubuntu') + # run: | + # python -m venv .venv + # source .venv/bin/activate - - name: Create and Activate Virtual Environment (Mac) - if: startsWith(matrix.os, 'macOS') - run: | - python3 -m venv .venv - source .venv/bin/activate + # - name: Create and Activate Virtual Environment (Mac) + # if: startsWith(matrix.os, 'macOS') + # run: | + # python3 -m venv .venv + # source .venv/bin/activate - - name: Create and Activate Virtual Environment (Windows) - if: startsWith(matrix.os, 'windows') - run: | - python -m venv .venv - .\.venv\Scripts\activate.ps1 + # - name: Create and Activate Virtual Environment (Windows) + # if: startsWith(matrix.os, 'windows') + # run: | + # python -m venv .venv + # .\.venv\Scripts\activate.ps1 - name: Install dependencies run: |