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 @@ -234,7 +234,7 @@ def add_defaults(self):
234
234
"""Add all the default files to self.filelist:
235
235
- README or README.txt
236
236
- setup.py
237
- - test/test*.py
237
+ - tests/test*.py and test/test*.py
238
238
- all pure Python modules mentioned in setup script
239
239
- all files pointed by package_data (build_py)
240
240
- all files defined in data_files.
@@ -292,7 +292,7 @@ def _add_defaults_standards(self):
292
292
self .warn ("standard file '%s' not found" % fn )
293
293
294
294
def _add_defaults_optional (self ):
295
- optional = ['test/test*.py' , 'setup.cfg' ]
295
+ optional = ['tests/test*.py' , ' test/test*.py' , 'setup.cfg' ]
296
296
for pattern in optional :
297
297
files = filter (os .path .isfile , glob (pattern ))
298
298
self .filelist .extend (files )
You can’t perform that action at this time.
0 commit comments