Skip to content

Commit

Permalink
Removed output folder creation from tests to avoid folder name collis…
Browse files Browse the repository at this point in the history
…ions.
  • Loading branch information
brendanjmeade committed Jul 15, 2024
1 parent 352a8d8 commit 59a1d52
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/test_closure.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def test_global_closure():

command_file_name = "./tests/test_closure_command.json"
command = celeri.get_command(command_file_name)
logger = celeri.get_logger(command)
# logger = celeri.get_logger(command)
segment, block, meshes, station, mogi, sar = celeri.read_data(command)

station = celeri.process_station(station, command)
Expand Down
2 changes: 1 addition & 1 deletion tests/test_japan_dense.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def test_japan_dense():
command_file_name = "./tests/test_japan_command.json"

command = celeri.get_command(command_file_name)
celeri.create_output_folder(command)
# celeri.create_output_folder(command)
# logger = celeri.get_logger(command)
segment, block, meshes, station, mogi, sar = celeri.read_data(command)
station = celeri.process_station(station, command)
Expand Down
2 changes: 1 addition & 1 deletion tests/test_western_north_america_dense.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def test_western_north_america_dense():
command_file_name = "./tests/test_western_north_america_command.json"

command = celeri.get_command(command_file_name)
celeri.create_output_folder(command)
# celeri.create_output_folder(command)
# logger = celeri.get_logger(command)
segment, block, meshes, station, mogi, sar = celeri.read_data(command)
station = celeri.process_station(station, command)
Expand Down

0 comments on commit 59a1d52

Please sign in to comment.