Skip to content

Commit

Permalink
partially addresses #40
Browse files Browse the repository at this point in the history
  • Loading branch information
LaraFuhrmann committed Nov 28, 2024
1 parent e0d0228 commit 018c036
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_shotgun_e2e.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ def test_e2e_shorah():
def test_e2e_shorah_with_extended_window_mode():
cwd_test_e2e_extended_window_mode = "./data_1/test_e2e_extended_window_modee"
# Check if the directory exists, if not, create it
if not os.path.exists(cwd_test_e2e_shorah_with_extended_window_mode):
os.makedirs(cwd_test_e2e_shorah_with_extended_window_mode)
if not os.path.exists(cwd_test_e2e_extended_window_mode):
os.makedirs(cwd_test_e2e_extended_window_mode)
p = subprocess.run(
"../shotgun_test.sh --extended_window_mode", shell=True, check=True, cwd=cwd_test_e2e_extended_window_mode
)
Expand Down

0 comments on commit 018c036

Please sign in to comment.