From 8d7a6bdaa687d289ba858a4037d18ff060c4120d Mon Sep 17 00:00:00 2001 From: Jun Komoda <45822440+junkmd@users.noreply.github.com> Date: Fri, 24 May 2024 23:51:37 +0900 Subject: [PATCH] Update autotest.yml --- .github/workflows/autotest.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/autotest.yml b/.github/workflows/autotest.yml index faf8dbd1e..7e419f43b 100644 --- a/.github/workflows/autotest.yml +++ b/.github/workflows/autotest.yml @@ -39,6 +39,8 @@ jobs: uses: actions/download-artifact@v4 with: name: build-artifact-${{ matrix.os }} + - name: Set up MSVC + uses: ilammy/msvc-dev-cmd@v1 - name: Register the OutProc COM server run: | ./server.exe /RegServer @@ -47,9 +49,9 @@ jobs: with: python-version: ${{ matrix.python-version }} architecture: ${{ matrix.architecture }} - - name: unittest comtypes - run: | - python -m unittest discover -v -s ./comtypes/test -t comtypes\test + # - name: unittest comtypes + # run: | + # python -m unittest discover -v -s ./comtypes/test -t comtypes\test - name: Unregister the OutProc COM server run: | ./server.exe /UnregServer @@ -59,7 +61,8 @@ jobs: strategy: matrix: os: [windows-latest, windows-2019] - python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12'] + # python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12'] + python-version: ['3.12'] architecture: ['x86', 'x64'] steps: - uses: actions/checkout@v3