summaryrefslogtreecommitdiffstats
path: root/snaps/test_runner.py
diff options
context:
space:
mode:
Diffstat (limited to 'snaps/test_runner.py')
-rw-r--r--snaps/test_runner.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/snaps/test_runner.py b/snaps/test_runner.py
index 54caccb..d207bf3 100644
--- a/snaps/test_runner.py
+++ b/snaps/test_runner.py
@@ -15,7 +15,6 @@
import argparse
import json
import logging
-import os
import unittest
from snaps import test_suite_builder, file_utils
@@ -124,9 +123,6 @@ def main(arguments):
logger.error('Environment file or external network not defined')
exit(1)
- # To ensure any files referenced via a relative path will begin from the diectory in which this file resides
- os.chdir(os.path.dirname(os.path.realpath(__file__)))
-
i = 0
while i < int(arguments.num_runs):
result = unittest.TextTestRunner(verbosity=2).run(suite)