diff options
Diffstat (limited to 'challenge-273/iangoodnight/python/tests/__init__.py')
| -rw-r--r-- | challenge-273/iangoodnight/python/tests/__init__.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/challenge-273/iangoodnight/python/tests/__init__.py b/challenge-273/iangoodnight/python/tests/__init__.py new file mode 100644 index 0000000000..c06655e4a4 --- /dev/null +++ b/challenge-273/iangoodnight/python/tests/__init__.py @@ -0,0 +1,7 @@ +""" +Adds the parent directory to the path so that the modules can be imported from +our tests. +""" +import sys + +sys.path.append("..") |
