Drop the test-* namespaces

This commit is contained in:
Pierre-Yves Chibon 2017-03-27 12:35:34 +02:00
parent 65a05da744
commit d0d66db763

View file

@ -415,21 +415,6 @@ if __name__ == '__main__':
#print ' RW private- = @all'
# dont' enable the above until we prevent building for real from private-
# XXX - Insert artificial namespaces into the set of namespaces returned
# by pkgdb. We want to create a mirror of rpms/PKG in test-rpms/PKG
# This hack occurs in two places. Here, and in the branch-creation script.
# https://github.com/fedora-infra/pkgdb2/issues/329#issuecomment-207050233
# And then, this got renamed from rpms-checks to test-rpms
# https://pagure.io/fedora-infrastructure/issue/5570
if 'rpms' in data:
data['test-rpms'] = copy.copy(data['rpms'])
# Also, modules are a thing
# https://pagure.io/fedora-infrastructure/issue/5571
if 'modules' in data:
data['test-modules'] = copy.copy(data['modules'])
if 'docker' in data:
data['test-docker'] = copy.copy(data['docker'])
# Get a list of all the packages
for namespace in data:
if namespace == 'title':