X-Git-Url: https://git.phdru.name/?p=sqlconvert.git;a=blobdiff_plain;f=.github%2Fworkflows%2Frun-tests.yaml;fp=.github%2Fworkflows%2Frun-tests.yaml;h=c7b03324ee57eb42ed1a7b4eba8a0f64776d157a;hp=7d51773842c92f83dd279c51209d69ecabcd234b;hb=ef4ecd3c4073a35ec0d0233ba7c03e66156a3bed;hpb=2391d24951c354fe6bdfcb70f4e16a75b7346970 diff --git a/.github/workflows/run-tests.yaml b/.github/workflows/run-tests.yaml index 7d51773..c7b0332 100644 --- a/.github/workflows/run-tests.yaml +++ b/.github/workflows/run-tests.yaml @@ -4,6 +4,8 @@ on: [push, pull_request] jobs: run-tests: + env: + not_in_conda: "[]" strategy: matrix: @@ -37,12 +39,13 @@ jobs: - uses: actions/checkout@v2 - uses: s-weigand/setup-conda@v1 with: + conda-channels: conda-forge python-version: ${{ matrix.python-version }} - if: ${{ runner.os == 'Linux' && matrix.python-version != '3.11' }} + if: ${{ !contains(fromJSON(env.not_in_conda), matrix.python-version) }} - uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - if: ${{ runner.os != 'Linux' || matrix.python-version == '3.11' }} + if: ${{ contains(fromJSON(env.not_in_conda), matrix.python-version) }} - name: Cache pip uses: actions/cache@v3 with: @@ -53,9 +56,10 @@ jobs: - name: Install dependencies run: | python --version + python -m ensurepip python -m pip install --upgrade pip setuptools wheel pip --version - pip install --upgrade virtualenv "tox < 4" + pip install --upgrade virtualenv "tox >= 3.15, < 4" - name: Set TOXENV run: | import os, sys