Skip to content

Commit

Permalink
Update autotest.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
junkmd authored May 27, 2024
1 parent 8d9cc1a commit d9559cf
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/autotest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,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.7']
architecture: ['x86', 'x64']
steps:
- uses: actions/checkout@v3
Expand All @@ -33,12 +34,12 @@ jobs:
run: |
pip install coverage
coverage run --source=comtypes -m unittest discover -v -s ./comtypes/test -t comtypes\test
coverage report
coverage report --omit=comtypes/gen
coverage html
- name: Upload coverage report
uses: actions/upload-artifact@v4
with:
name: coverage-report
name: coverage-report-{matrix.os}-{matrix.python-version}-{matrix.architecture}
path: htmlcov/*
- name: Unregister the OutProc COM server
run: |
Expand All @@ -50,7 +51,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.7']
architecture: ['x86', 'x64']
steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit d9559cf

Please sign in to comment.