Skip to content

Commit

Permalink
Use local temporary directory for output
Browse files Browse the repository at this point in the history
  • Loading branch information
benmwebb committed Feb 29, 2024
1 parent d6baa6b commit 0618729
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/spatiotemporal/test/test_make_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def test_writing_output(self):
input = os.path.join(tmpdir, 'data')
shutil.copytree(self.get_input_file_name('data'), input)
# set output dir
output=self.get_tmp_file_name('output')
output = os.path.join(tmpdir, 'output')
spatiotemporal.create_DAG(state_dict, input_dir=input,output_dir=output,out_labeled_pdf=True,out_cdf=True,out_pdf=True,draw_dag=False)
# Read in input files
cdf=np.loadtxt(output+'/cdf.txt')
Expand Down

0 comments on commit 0618729

Please sign in to comment.