File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -235,7 +235,7 @@ def add_defaults(self):
235
235
"""Add all the default files to self.filelist:
236
236
- README or README.txt
237
237
- setup.py
238
- - test/test*.py
238
+ - tests/test*.py and test/test*.py
239
239
- all pure Python modules mentioned in setup script
240
240
- all files pointed by package_data (build_py)
241
241
- all files defined in data_files.
@@ -293,7 +293,7 @@ def _add_defaults_standards(self):
293
293
self .warn ("standard file '%s' not found" % fn )
294
294
295
295
def _add_defaults_optional (self ):
296
- optional = ['test/test*.py' , 'setup.cfg' ]
296
+ optional = ['tests/test*.py' , ' test/test*.py' , 'setup.cfg' ]
297
297
for pattern in optional :
298
298
files = filter (os .path .isfile , glob (pattern ))
299
299
self .filelist .extend (files )
You can’t perform that action at this time.
0 commit comments