diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
commit | 26a029d407be480d791972afb5975cf62c9360a6 (patch) | |
tree | f435a8308119effd964b339f76abb83a57c29483 /testing/condprofile/requirements | |
parent | Initial commit. (diff) | |
download | firefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz firefox-26a029d407be480d791972afb5975cf62c9360a6.zip |
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/condprofile/requirements')
-rw-r--r-- | testing/condprofile/requirements/base.txt | 5 | ||||
-rw-r--r-- | testing/condprofile/requirements/ci-client.txt | 10 | ||||
-rw-r--r-- | testing/condprofile/requirements/ci.txt | 7 | ||||
-rw-r--r-- | testing/condprofile/requirements/local-client.txt | 6 | ||||
-rw-r--r-- | testing/condprofile/requirements/local.txt | 5 | ||||
-rw-r--r-- | testing/condprofile/requirements/tox.txt | 8 |
6 files changed, 41 insertions, 0 deletions
diff --git a/testing/condprofile/requirements/base.txt b/testing/condprofile/requirements/base.txt new file mode 100644 index 0000000000..fc7d70013a --- /dev/null +++ b/testing/condprofile/requirements/base.txt @@ -0,0 +1,5 @@ +aiohttp==3.7.4.post0 +https://pypi.pub.build.mozilla.org/pub/arsenic-19.1-py3-none-any.whl +requests==2.22.0 +pyyaml==5.1.2 +mozversion>=1.0 diff --git a/testing/condprofile/requirements/ci-client.txt b/testing/condprofile/requirements/ci-client.txt new file mode 100644 index 0000000000..f04776863f --- /dev/null +++ b/testing/condprofile/requirements/ci-client.txt @@ -0,0 +1,10 @@ +# pulled when running in TaskCluster for python 2 only +# we just pull dependencies required by condprof.client +requests==2.22.0 +pyyaml==5.1.2 + +# the target.condprof.tests.tar.gz archive pulls those dependencies +# directly into the condprof project root +./mozfile +./mozlog +./mozprofile diff --git a/testing/condprofile/requirements/ci.txt b/testing/condprofile/requirements/ci.txt new file mode 100644 index 0000000000..d1e4f62bef --- /dev/null +++ b/testing/condprofile/requirements/ci.txt @@ -0,0 +1,7 @@ +# pulled when running in TaskCluster +# the target.condprof.tests.tar.gz archive pulls those dependencies +# directly into the condprof project root. +./mozfile +./mozlog +./mozprofile +./mozdevice diff --git a/testing/condprofile/requirements/local-client.txt b/testing/condprofile/requirements/local-client.txt new file mode 100644 index 0000000000..8a5e4da1e2 --- /dev/null +++ b/testing/condprofile/requirements/local-client.txt @@ -0,0 +1,6 @@ +./mozbase/mozfile +./mozbase/mozlog +./mozbase/mozprofile + +requests==2.22.0 +pyyaml==5.1.2 diff --git a/testing/condprofile/requirements/local.txt b/testing/condprofile/requirements/local.txt new file mode 100644 index 0000000000..b487db7274 --- /dev/null +++ b/testing/condprofile/requirements/local.txt @@ -0,0 +1,5 @@ +# pulled when running locally +../mozbase/mozfile +../mozbase/mozlog +../mozbase/mozprofile +../mozbase/mozdevice diff --git a/testing/condprofile/requirements/tox.txt b/testing/condprofile/requirements/tox.txt new file mode 100644 index 0000000000..772a4a4818 --- /dev/null +++ b/testing/condprofile/requirements/tox.txt @@ -0,0 +1,8 @@ +# pulled when running tox locally +-r requirements/local.txt + +pytest +pytest-cov +pytest-random-order +coveralls +responses |