Bug 1203085 - Silence unnecessary error about not finding artifacts. DONTBUILD. r=jlund

When we added support for finding artifacts from TaskCluster BBB tasks
we added an error for not finding the artifacts either via buildbot properties
or through the TC APIs.

Unfortunately, this error did not take into consideration when mozharness sets
the artifacts through the options --installer-url and --test-url.

We're removing the error as few lines below the error logging is sufficient
to handle all three cases and not raise misleading errors.

--HG--
extra : commitid : 1nxRrdDWutr
extra : histedit_source : b0720a9783cea7cdde9866fd09d5d8847c9c08e3
This commit is contained in:
Armen Zambrano Gasparnian 2015-09-30 08:07:40 -04:00
parent 08997000eb
commit 63b7a19a57

View File

@ -309,11 +309,6 @@ class TestingMixin(VirtualenvMixin, BuildbotMixin, ResourceMonitoringMixin,
self.find_artifacts_from_buildbot_changes()
elif 'taskId' in self.buildbot_config['properties']:
self.find_artifacts_from_taskcluster()
else:
self.exception(
"We have not been able to determine which artifacts "
"to use in order to run the tests."
)
missing = []
if not self.installer_url: