Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad Warren <bmw@eff.org>2022-10-03 21:44:24 +0300
committerBrad Warren <bmw@eff.org>2022-10-03 21:44:24 +0300
commit0910c5abb985bcde58f42ab31fb02458ab2016c0 (patch)
treef351e435e813c19b928ec0520804713b87f5f386
parent386233ed7bba5d0079af5ba6f72fa0b9f40f67ef (diff)
keep mock pinnedpin-less
-rw-r--r--tools/pinning/current/pyproject.toml7
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/pinning/current/pyproject.toml b/tools/pinning/current/pyproject.toml
index 74a36ddbd..ae3df1a01 100644
--- a/tools/pinning/current/pyproject.toml
+++ b/tools/pinning/current/pyproject.toml
@@ -51,6 +51,13 @@ awscli = ">=1.22.76"
# as a dependency here to ensure a version of cython is pinned for extra
# stability.
cython = "*"
+# We install mock in our "external-mock" tox environment to test that we didn't
+# break Certbot's test API which used to always use mock objects from the 3rd
+# party mock library. We list the mock dependency here so that is pinned, but
+# we don't depend on it in Certbot to avoid installing mock when it's not
+# needed. This dependency can be removed here once Certbot's support for the
+# 3rd party mock library has been dropped.
+mock = "*"
# setuptools-rust is a build dependency of cryptography, and since we don't have
# a great way of pinning build dependencies, we simply list it here to ensure a
# working version. Note: if build dependencies of setuptools-rust break at some