Skip to content

Commit

Permalink
Add log_file_path property.
Browse files Browse the repository at this point in the history
  • Loading branch information
jakeichikawasalesforce committed Jun 19, 2024
1 parent 5b77032 commit 4c816f7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/integration/integ_test_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,8 @@ def setUp(self):

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

0 comments on commit 4c816f7

Please sign in to comment.