From 32106698a3020a8044e80681179133a59fdb11f0 Mon Sep 17 00:00:00 2001 From: Tyler Porter Date: Tue, 15 Aug 2023 19:35:03 -0400 Subject: [PATCH] Run tests against Python 3.11 in CI --- .github/workflows/run_unittest_on_pr_open.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run_unittest_on_pr_open.yml b/.github/workflows/run_unittest_on_pr_open.yml index 1697b03c..c50fde17 100644 --- a/.github/workflows/run_unittest_on_pr_open.yml +++ b/.github/workflows/run_unittest_on_pr_open.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.7", "3.8", "3.9", "3.10"] + python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} @@ -25,4 +25,4 @@ jobs: pip install -r ./requirements.txt - name: Test with unittest run: | - python -m unittest discover -s ./tests -p 'test_*.py' \ No newline at end of file + python -m unittest discover -s ./tests -p 'test_*.py'