Don't add test requres files to requires files

This three lines were added by mistake during manual patch merging,
and lead to test requirements being ammended to 'normal' ones.

Change-Id: Iad245e04f1cde8f3740dc5bd286e46ae273e850e
This commit is contained in:
Ivan A. Melnikov 2013-11-25 16:24:10 +02:00
parent 2356654665
commit 2ea96c914e

View File

@ -139,10 +139,6 @@ class PythonInstallComponent(PkgInstallComponent):
sh.joinpths(tools_dir, 'test-requires'),
sh.joinpths(app_dir, 'test-requirements.txt'),
]
if self.get_bool_option('use_tests_requires', default_value=True):
self.requires_files.append(sh.joinpths(tools_dir, 'test-requires'))
self.requires_files.append(sh.joinpths(app_dir,
'test-requirements.txt'))
self._origins_fn = kargs['origins_fn']
def download(self):