From 3a8f658e96ab4e4a7e21cf3a71dd850cbdefa90d Mon Sep 17 00:00:00 2001 From: Jesse Pretorius Date: Wed, 9 May 2018 14:04:25 +0100 Subject: [PATCH] Remove test-requirements files from py_pkgs lookup The repo build does not need to build the requirements necessary for role tests. This wastes time unnecessarily and increases the size of the lookup output, making it more confusing than it already is. The REQUIREMENTS_FILE_TYPES it looks for is now reduced to only 'requirements.txt' and 'global-requirement-pins.txt'. Change-Id: I11acc957ce4fe6024a40d5bb048a448deaf41778 --- lookup/py_pkgs.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/lookup/py_pkgs.py b/lookup/py_pkgs.py index 28a806ee..d641ad1c 100644 --- a/lookup/py_pkgs.py +++ b/lookup/py_pkgs.py @@ -40,10 +40,7 @@ ROLE_REQUIREMENTS = dict() REQUIREMENTS_FILE_TYPES = [ - 'test-requirements.txt', - 'dev-requirements.txt', 'requirements.txt', - 'global-requirements.txt', 'global-requirement-pins.txt' ]