File tree Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -34,13 +34,13 @@ jobs:
34
34
pip install pywin32
35
35
}
36
36
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 }}
44
44
- name : Unregister the OutProc COM server
45
45
run : |
46
46
cd source/CppTestSrv
Original file line number Diff line number Diff line change @@ -62,6 +62,7 @@ def test(self):
62
62
name = pb .Read ("FriendlyName" , VARIANT (), None )
63
63
with self .subTest (name = name ):
64
64
self .assertIsInstance (name , str )
65
+ print (name )
65
66
break # A single item is enough to test the COM features.
66
67
else :
67
68
# If no item is detected, the test will be skipped.
You can’t perform that action at this time.
0 commit comments