Skip to content

Commit

Permalink
Fix test script
Browse files Browse the repository at this point in the history
  • Loading branch information
fontanf committed Apr 3, 2024
1 parent 0733c58 commit 5b08702
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions scripts/run_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"knapsack_with_conflicts",
instance)
json_output_path = os.path.join(
test_results_directory,
args.directory,
"knapsack_with_conflicts",
instance + ".json")
if not os.path.exists(os.path.dirname(json_output_path)):
Expand Down Expand Up @@ -86,7 +86,7 @@
"flowshop_scheduling",
instance)
json_output_path = os.path.join(
test_results_directory,
args.directory,
"permutation_flowshop_scheduling_tct",
instance + ".json")
if not os.path.exists(os.path.dirname(json_output_path)):
Expand Down Expand Up @@ -133,7 +133,7 @@
"flowshop_scheduling",
instance)
json_output_path = os.path.join(
test_results_directory,
args.directory,
"permutation_flowshop_scheduling_makespan",
instance + ".json")
if not os.path.exists(os.path.dirname(json_output_path)):
Expand Down Expand Up @@ -178,7 +178,7 @@
"sequential_ordering",
instance)
json_output_path = os.path.join(
test_results_directory,
args.directory,
"sequential_ordering",
instance + ".json")
if not os.path.exists(os.path.dirname(json_output_path)):
Expand Down Expand Up @@ -225,7 +225,7 @@
"simple_assembly_line_balancing_1",
instance)
json_output_path = os.path.join(
test_results_directory,
args.directory,
"simple_assembly_line_balancing_1",
instance + ".json")
if not os.path.exists(os.path.dirname(json_output_path)):
Expand Down

0 comments on commit 5b08702

Please sign in to comment.