From e6c07b6014220bd7dd7c1538d18767ebc6c5a96b Mon Sep 17 00:00:00 2001 From: Stan Ulbrych Date: Wed, 27 Aug 2025 18:43:07 +0100 Subject: [PATCH 1/2] commit --- master/custom/factories.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/master/custom/factories.py b/master/custom/factories.py index a56f5eb5..9f88779e 100644 --- a/master/custom/factories.py +++ b/master/custom/factories.py @@ -46,6 +46,12 @@ def __init__(self, source, *, extra_tags=[], **kwargs): self.setup(**kwargs) self.tags = self.factory_tags + extra_tags + self.test_environ = { + "BUILDBOT": "1", # Every time you use this option, a puppy dies!! + **getattr(self, "test_environ", {}), + } + + ############################################################################## ############################### UNIX BUILDS ################################ From a28edce18c60cb7c4a649bc66c4a30b80568e69b Mon Sep 17 00:00:00 2001 From: Stan Ulbrych Date: Wed, 27 Aug 2025 18:56:44 +0100 Subject: [PATCH 2/2] lint --- master/custom/factories.py | 1 - 1 file changed, 1 deletion(-) diff --git a/master/custom/factories.py b/master/custom/factories.py index 9f88779e..65f1be06 100644 --- a/master/custom/factories.py +++ b/master/custom/factories.py @@ -52,7 +52,6 @@ def __init__(self, source, *, extra_tags=[], **kwargs): } - ############################################################################## ############################### UNIX BUILDS ################################ ##############################################################################