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 24, 2024
1 parent 8876a4d commit ad01b11
Showing 1 changed file with 23 additions and 20 deletions.
43 changes: 23 additions & 20 deletions .github/workflows/autotest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,24 +38,27 @@ jobs:
uses: actions/download-artifact@v4
with:
name: build-artifact-${{ matrix.os }}
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: ${{ matrix.architecture }}
- name: install comtypes
run: |
pip install --upgrade setuptools
python setup.py install
pip uninstall comtypes -y
python test_pip_install.py
- name: Register the OutProc COM server
run: |
tree /f
./server.exe /RegServer
- name: unittest comtypes
run: |
python -m unittest discover -v -s ./comtypes/test -t comtypes\test
- name: Unregister the OutProc COM server
- name: check
run: |
./server.exe /UnregServer
dir
# - name: Set up Python
# uses: actions/setup-python@v4
# with:
# python-version: ${{ matrix.python-version }}
# architecture: ${{ matrix.architecture }}
# - name: install comtypes
# run: |
# pip install --upgrade setuptools
# python setup.py install
# pip uninstall comtypes -y
# python test_pip_install.py
# - name: Register the OutProc COM server
# run: |
# tree /f
# ./server.exe /RegServer
# - 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

0 comments on commit ad01b11

Please sign in to comment.