diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2021-01-30 18:42:29 -0500 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2021-01-30 18:42:29 -0500 |
commit | 24c7c79459c541b7e5a83fe58634fe84be959ec0 (patch) | |
tree | 2a85fd2c2a8782c63596cd7cea4b0ecdad2e6389 | |
parent | 338b090791b8216f42dd9e7263f3ac9e30e7d973 (diff) | |
download | cmd2-git-24c7c79459c541b7e5a83fe58634fe84be959ec0.tar.gz |
Fix nox session name for running tests
-rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files 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 |