From 2ea96c914e7f979f7dcec548b5dcd9c319802f8c Mon Sep 17 00:00:00 2001 From: "Ivan A. Melnikov" Date: Mon, 25 Nov 2013 16:24:10 +0200 Subject: [PATCH] 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 --- anvil/components/base_install.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/anvil/components/base_install.py b/anvil/components/base_install.py index b037200d..abd1898d 100644 --- a/anvil/components/base_install.py +++ b/anvil/components/base_install.py @@ -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):