diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 45375a7..c7f3cf6 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -74,11 +74,13 @@ jobs: LTD_KEEPER_TEST_AWS_ID: ${{ secrets.LTD_KEEPER_TEST_AWS_ID }} LTD_KEEPER_TEST_AWS_SECRET: ${{ secrets.LTD_KEEPER_TEST_AWS_SECRET }} LTD_KEEPER_TEST_BUCKET: ${{ secrets.LTD_KEEPER_TEST_BUCKET }} - run: tox -e typing,${{matrix.db}},coverage-report # run tox using Python in path + # run: tox -e typing,${{matrix.db}},coverage-report # run tox using Python in path + run: tox -e ${{matrix.db}},coverage-report # run tox using Python in path - name: Run tox without external services if: ${{ !(matrix.python != '3.10' && matrix.db != 'postgres') }} - run: tox -e typing,${{matrix.db}},coverage-report # run tox using Python in path + # run: tox -e typing,${{matrix.db}},coverage-report # run tox using Python in path + run: tox -e ${{matrix.db}},coverage-report # run tox using Python in path docs: runs-on: ubuntu-latest