We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b77032 commit 4c816f7Copy full SHA for 4c816f7
tests/integration/integ_test_base.py
@@ -225,7 +225,8 @@ def setUp(self):
225
226
# Platform specific - for integration tests we want to engage
227
# startup script
228
- with open(self.tmp_dir + "/output.txt", "w") as outfile:
+ self.log_file_path = os.path.join(self.tmp_dir, "output.txt")
229
+ with open(self.log_file_path, "w") as outfile:
230
cmd = ["tabpy", "--config=" + self.config_file_name, "--disable-auth-warning"]
231
preexec_fn = None
232
if platform.system() == "Windows":
0 commit comments