Skip to content

Commit 2624272

Browse files
committed
update
1 parent 6944bdf commit 2624272

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

.github/workflows/autotest.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ jobs:
3434
pip install pywin32
3535
}
3636
pip install coverage[toml]
37-
coverage run -m unittest discover -v -s comtypes\test -t comtypes\test
38-
- name: Upload coverage reports to Codecov
39-
uses: codecov/codecov-action@v5
40-
with:
41-
fail_ci_if_error: true
42-
network_filter: comtype
43-
token: ${{ secrets.CODECOV_TOKEN }}
37+
python -m unittest comtypes.test.test_directshow
38+
# - name: Upload coverage reports to Codecov
39+
# uses: codecov/codecov-action@v5
40+
# with:
41+
# fail_ci_if_error: true
42+
# network_filter: comtype
43+
# token: ${{ secrets.CODECOV_TOKEN }}
4444
- name: Unregister the OutProc COM server
4545
run: |
4646
cd source/CppTestSrv

comtypes/test/test_directshow.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ def test(self):
6262
name = pb.Read("FriendlyName", VARIANT(), None)
6363
with self.subTest(name=name):
6464
self.assertIsInstance(name, str)
65+
print(name)
6566
break # A single item is enough to test the COM features.
6667
else:
6768
# If no item is detected, the test will be skipped.

0 commit comments

Comments
 (0)