From 24c7c79459c541b7e5a83fe58634fe84be959ec0 Mon Sep 17 00:00:00 2001 From: Todd Leonhardt Date: Sat, 30 Jan 2021 18:42:29 -0500 Subject: Fix nox session name for running tests --- .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 65ccb164..780b0c0f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - python-version: [3.6, 3.7, 3.8, 3.9, 3.10-dev] ## Doubles as the nox session + python-version: [3.6, 3.7, 3.8, 3.9, 3.10-dev] fail-fast: false runs-on: ${{ matrix.os }} steps: @@ -49,4 +49,4 @@ jobs: - name: Run tests and post coverage results env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: python -m nox --non-interactive --session ${{ matrix.python-version }} # Run nox for a single version of Python + run: python -m nox --non-interactive --session tests-${{ matrix.python-version }} # Run nox for a single version of Python -- cgit v1.2.1