Skip to content

Commit 4c816f7

Browse files
Add log_file_path property.
1 parent 5b77032 commit 4c816f7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/integration/integ_test_base.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,8 @@ def setUp(self):
225225

226226
# Platform specific - for integration tests we want to engage
227227
# startup script
228-
with open(self.tmp_dir + "/output.txt", "w") as outfile:
228+
self.log_file_path = os.path.join(self.tmp_dir, "output.txt")
229+
with open(self.log_file_path, "w") as outfile:
229230
cmd = ["tabpy", "--config=" + self.config_file_name, "--disable-auth-warning"]
230231
preexec_fn = None
231232
if platform.system() == "Windows":

0 commit comments

Comments
 (0)