diff --git a/.github/workflows/publish-command.yml b/.github/workflows/publish-command.yml index 93e0be8770f9..89677481489d 100644 --- a/.github/workflows/publish-command.yml +++ b/.github/workflows/publish-command.yml @@ -260,13 +260,12 @@ jobs: uses: actions/setup-python@v4 with: python-version: "3.9" - - name: Install Pyenv and Tox + - name: Install Pyenv run: | python3 -m pip install --quiet virtualenv==16.7.9 --user rm -r venv || echo "no pre-existing venv" python3 -m virtualenv venv source venv/bin/activate - pip install --quiet tox==3.24.4 - name: Install yq if: github.event.inputs.auto-bump-version == 'true' && success() run: | @@ -274,11 +273,10 @@ jobs: sudo add-apt-repository ppa:rmescandon/yq sudo apt update sudo apt install yq -y - - name: Test and install CI scripts + - name: Install CI scripts # all CI python packages have the prefix "ci_" run: | source venv/bin/activate - tox -r -c ./tools/tox_ci.ini pip install --quiet -e ./tools/ci_* - name: Write Integration Test Credentials for ${{ matrix.connector }} run: | diff --git a/.github/workflows/test-command.yml b/.github/workflows/test-command.yml index 23ad125b5e51..069d1cd46624 100644 --- a/.github/workflows/test-command.yml +++ b/.github/workflows/test-command.yml @@ -95,17 +95,15 @@ jobs: uses: actions/setup-python@v4 with: python-version: "3.9" - - name: Install Pyenv and Tox + - name: Install Pyenv run: | python3 -m pip install --quiet virtualenv==16.7.9 --user python3 -m virtualenv venv source venv/bin/activate - pip install --quiet tox==3.24.4 - - name: Test and install CI scripts + - name: Install CI scripts # all CI python packages have the prefix "ci_" run: | source venv/bin/activate - tox -r -c ./tools/tox_ci.ini pip install --quiet -e ./tools/ci_* - name: Write Integration Test Credentials for ${{ github.event.inputs.connector }} run: | diff --git a/.github/workflows/test-performance-command.yml b/.github/workflows/test-performance-command.yml index 80c833549c2a..3ab4467e6b48 100644 --- a/.github/workflows/test-performance-command.yml +++ b/.github/workflows/test-performance-command.yml @@ -92,17 +92,15 @@ jobs: uses: actions/setup-python@v4 with: python-version: "3.9" - - name: Install Pyenv and Tox + - name: Install Pyenv run: | python3 -m pip install --quiet virtualenv==16.7.9 --user python3 -m virtualenv venv source venv/bin/activate - pip install --quiet tox==3.24.4 - - name: Test and install CI scripts + - name: Install CI scripts # all CI python packages have the prefix "ci_" run: | source venv/bin/activate - tox -r -c ./tools/tox_ci.ini pip install --quiet -e ./tools/ci_* - name: Write Integration Test Credentials for ${{ github.event.inputs.connector }} run: |