summaryrefslogtreecommitdiff
path: root/src/buildstream/testing/_utils/site.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/buildstream/testing/_utils/site.py')
-rw-r--r--src/buildstream/testing/_utils/site.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/buildstream/testing/_utils/site.py b/src/buildstream/testing/_utils/site.py
index d8ace859b..705419f58 100644
--- a/src/buildstream/testing/_utils/site.py
+++ b/src/buildstream/testing/_utils/site.py
@@ -38,7 +38,11 @@ except ProgramNotFoundError:
try:
BZR = utils.get_host_tool("bzr") # type: Optional[str]
HAVE_BZR = True
- BZR_ENV = {"BZR_EMAIL": "Testy McTesterson <testy.mctesterson@example.com>"}
+ # Breezy 3.0 supports `BRZ_EMAIL` but not `BZR_EMAIL`
+ BZR_ENV = {
+ "BZR_EMAIL": "Testy McTesterson <testy.mctesterson@example.com>",
+ "BRZ_EMAIL": "Testy McTesterson <testy.mctesterson@example.com>",
+ }
except ProgramNotFoundError:
BZR = None
HAVE_BZR = False