We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8946f8 commit 7d1da91Copy full SHA for 7d1da91
setup.py
@@ -106,7 +106,11 @@ def run(self):
106
"--module-first",
107
"--output-dir", "doc/api",
108
"microscope",
109
- "microscope/win32.py"]) # skip win32 so docs will build on other platforms.
+ # exclude win32 so docs will build on other platforms
110
+ "microscope/win32.py",
111
+ # exclude the test unit modules
112
+ "microscope/testsuite/test_*"
113
+ ])
114
115
with unittest.mock.patch('ctypes.CDLL', new=cdll_diversion):
116
super().run()
0 commit comments