From 53afd37b893e42189cee0b759346e91da661ac3b Mon Sep 17 00:00:00 2001 From: Ethan Henderson Date: Wed, 3 Nov 2021 15:20:48 +0000 Subject: [PATCH] Correct issue that prevented Python 3.11 tests from running --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1d61d0d..c14d260 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -54,7 +54,7 @@ jobs: os: [ubuntu-latest, macos-latest, windows-latest] python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11-dev"] - name: Tests + name: Test runs-on: ${{ matrix.os }} steps: @@ -67,7 +67,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install dependencies - run: python -m pip install nox + run: python -m pip install git+https://github.com/pytest-dev/py nox . --use-feature=in-tree-build - name: Run tests run: python -m nox -s tests