Add global-requirements.txt to the mirror list

The openstack/requirements repo is consolidating the requirments lists
into a single file. This patch supports that work.

Change-Id: Ia2ca88c0cf6c3317911d1d396d3779b3df5216a0
This commit is contained in:
Monty Taylor 2013-08-02 11:06:36 -04:00
parent fd4fc73453
commit 38411d4dcb
1 changed files with 2 additions and 1 deletions

View File

@ -208,7 +208,8 @@ class Mirror(object):
out = self.run_command("git reset --hard %s" % branch)
out = self.run_command("git clean -x -f -d -q")
reqlist = []
for requires_file in ("requirements.txt",
for requires_file in ("global-requirements.txt",
"requirements.txt",
"test-requirements.txt",
"tools/pip-requires",
"tools/test-requires"):