diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /testing/condprofile/requirements | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esr
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..d24f21ec9f --- /dev/null +++ b/testing/condprofile/requirements/base.txt @@ -0,0 +1,5 @@ +aiohttp==3.7.4 +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..1be689c6fb --- /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 +./mozprofile +./mozlog diff --git a/testing/condprofile/requirements/ci.txt b/testing/condprofile/requirements/ci.txt new file mode 100644 index 0000000000..90173dbf71 --- /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 +./mozprofile +./mozdevice +./mozlog diff --git a/testing/condprofile/requirements/local-client.txt b/testing/condprofile/requirements/local-client.txt new file mode 100644 index 0000000000..13c98fe78e --- /dev/null +++ b/testing/condprofile/requirements/local-client.txt @@ -0,0 +1,6 @@ +./mozbase/mozfile +./mozbase/mozprofile +./mozbase/mozlog + +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..4e1ed85698 --- /dev/null +++ b/testing/condprofile/requirements/local.txt @@ -0,0 +1,5 @@ +# pulled when running locally +../mozbase/mozfile +../mozbase/mozprofile +../mozbase/mozdevice +../mozbase/mozlog 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 |