From 05a67c626484c0a56a6fccf068c8284ec6647b97 Mon Sep 17 00:00:00 2001 From: Rob Hallam <0504004h@student.gla.ac.uk> Date: Fri, 19 Jul 2024 09:12:10 +0100 Subject: [PATCH] feat: add context to ease testing --- test/context.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 test/context.py diff --git a/test/context.py b/test/context.py new file mode 100644 index 0000000..abe2638 --- /dev/null +++ b/test/context.py @@ -0,0 +1,7 @@ +import os +import sys + +# Add the root directory of the project ("..") to the path +sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))) + +import pipeline