From 6dee878846acfb96a061d2f0bb44ef1de8782b07 Mon Sep 17 00:00:00 2001 From: LuskasHusty <63302125+LuskasHusty@users.noreply.github.com> Date: Thu, 12 Feb 2026 11:21:30 -0300 Subject: [PATCH] FIX: Missing environ variable --- TutorialMaker/TutorialMaker.py | 1 + 1 file changed, 1 insertion(+) diff --git a/TutorialMaker/TutorialMaker.py b/TutorialMaker/TutorialMaker.py index 9797596..480c66b 100644 --- a/TutorialMaker/TutorialMaker.py +++ b/TutorialMaker/TutorialMaker.py @@ -618,6 +618,7 @@ def runTutorialTestCases(tutorial_name, callback=None, progressCallback=None): module. For example, if a developer removes a feature that you depend on, your test should break so they know that the feature is needed. """ + os.environ["TUTORIAL_CURRENT_SELFTEST"] = tutorial_name tPath = Lib.TutorialUtils.get_module_basepath("TutorialMaker") + f"/Testing/{tutorial_name}.py" SelfTestTutorialLayer.ParseTutorial(tPath) import sys