summaryrefslogtreecommitdiffstats
path: root/testing/mozharness/configs/firefox_ui_tests
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /testing/mozharness/configs/firefox_ui_tests
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip
Add m-esr52 at 52.6.0
Diffstat (limited to 'testing/mozharness/configs/firefox_ui_tests')
-rw-r--r--testing/mozharness/configs/firefox_ui_tests/qa_jenkins.py19
-rw-r--r--testing/mozharness/configs/firefox_ui_tests/releng_release.py33
-rw-r--r--testing/mozharness/configs/firefox_ui_tests/taskcluster.py11
3 files changed, 63 insertions, 0 deletions
diff --git a/testing/mozharness/configs/firefox_ui_tests/qa_jenkins.py b/testing/mozharness/configs/firefox_ui_tests/qa_jenkins.py
new file mode 100644
index 000000000..5f6911b81
--- /dev/null
+++ b/testing/mozharness/configs/firefox_ui_tests/qa_jenkins.py
@@ -0,0 +1,19 @@
+# Default configuration as used by Mozmill CI (Jenkins)
+
+
+config = {
+ # Tests run in mozmill-ci do not use RelEng infra
+ 'developer_mode': True,
+
+ # PIP
+ 'find_links': ['http://pypi.pub.build.mozilla.org/pub'],
+ 'pip_index': False,
+
+ # mozcrash support
+ 'download_minidump_stackwalk': True,
+ 'download_symbols': 'ondemand',
+ 'download_tooltool': True,
+
+ # Disable proxxy because it isn't present in the QA environment.
+ 'proxxy': {},
+}
diff --git a/testing/mozharness/configs/firefox_ui_tests/releng_release.py b/testing/mozharness/configs/firefox_ui_tests/releng_release.py
new file mode 100644
index 000000000..28baf6aef
--- /dev/null
+++ b/testing/mozharness/configs/firefox_ui_tests/releng_release.py
@@ -0,0 +1,33 @@
+# Default configuration as used by Release Engineering for testing release/beta builds
+
+import os
+import sys
+
+import mozharness
+
+
+external_tools_path = os.path.join(
+ os.path.abspath(os.path.dirname(os.path.dirname(mozharness.__file__))),
+ 'external_tools',
+)
+
+
+config = {
+ # General local variable overwrite
+ 'exes': {
+ 'gittool.py': [
+ # Bug 1227079 - Python executable eeded to get it executed on Windows
+ sys.executable,
+ os.path.join(external_tools_path, 'gittool.py')
+ ],
+ },
+
+ # PIP
+ 'find_links': ['http://pypi.pub.build.mozilla.org/pub'],
+ 'pip_index': False,
+
+ # mozcrash support
+ 'download_minidump_stackwalk': True,
+ 'download_symbols': 'ondemand',
+ 'download_tooltool': True,
+}
diff --git a/testing/mozharness/configs/firefox_ui_tests/taskcluster.py b/testing/mozharness/configs/firefox_ui_tests/taskcluster.py
new file mode 100644
index 000000000..66fc72935
--- /dev/null
+++ b/testing/mozharness/configs/firefox_ui_tests/taskcluster.py
@@ -0,0 +1,11 @@
+# Config file for firefox ui tests run via TaskCluster.
+
+config = {
+ "find_links": [
+ "http://pypi.pub.build.mozilla.org/pub",
+ ],
+
+ "pip_index": False,
+
+ "tooltool_cache": "/builds/tooltool_cache",
+}