diff --git a/tests/test_simple.py b/tests/test_simple.py index 79381bc..d277925 100755 --- a/tests/test_simple.py +++ b/tests/test_simple.py @@ -89,7 +89,8 @@ def test_pipeline(self): == True ) - command = "mongoexport --db bifrost_test_db --collection samples --pretty --out /home/finn/mongoexport.json" + command = \ + f"mongoexport --db bifrost_test_db --collection samples --pretty --out {self.test_dir}/mongoexport.json" process: subprocess.Popen = subprocess.Popen( command, stdout=sys.stdout, stderr=sys.stderr, shell=True )