Home | History | Annotate | Download | only in utils

Lines Matching refs:label_name

323     for label_name in test.dependencies.split(','):
324 label_name = label_name.strip().lower()
325 if not label_name:
329 label = models.Label.objects.get(name=label_name)
331 log_dependency_not_found(label_name)
338 def log_dependency_not_found(label_name):
342 @param label_name: from test dependencies.
344 if label_name in DEPENDENCIES_NOT_FOUND:
346 logging.info("Dependency %s not found", label_name)
347 DEPENDENCIES_NOT_FOUND.add(label_name)