From de40f77a4fdb80a8d2055419df41e5f9f34c7e3b Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Wed, 5 Jul 2023 15:20:37 -0700 Subject: [PATCH] turn all windows tests back on --- .github/workflows/windows-tests.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/windows-tests.yml b/.github/workflows/windows-tests.yml index c20460d4c..023e0e1fc 100644 --- a/.github/workflows/windows-tests.yml +++ b/.github/workflows/windows-tests.yml @@ -8,7 +8,7 @@ jobs: runs-on: windows-latest strategy: matrix: - python-version: ["3.11"] + python-version: ["3.8", "3.9", "3.10", "3.11"] steps: - name: Check out repository @@ -19,6 +19,10 @@ jobs: with: python-version: ${{ matrix.python-version }} + - name: Install universal ctags + run: | + choco install universal-ctags + - name: Install dependencies run: | python -m pip install --upgrade pip @@ -26,4 +30,4 @@ jobs: - name: Run tests run: | - python -m unittest discover -s tests -k test_main_with_empty_git_dir_new_file -v + python -m unittest discover -s tests