Skip to content

Commit

Permalink
all days
Browse files Browse the repository at this point in the history
  • Loading branch information
Moelf committed Nov 30, 2023
1 parent 4d3a869 commit 5f7a34e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,12 @@ function get_all_inputs_solutions(day_num_str)
end


for day_num in 0:0

for day_num in 0:25
day_num_str = lpad(day_num, 2, '0')
inputs_solutions = get_all_inputs_solutions(day_num_str)
isempty(inputs_solutions) && continue
@testset verbose=true "Day $day_num_str" begin
inputs_solutions = get_all_inputs_solutions(day_num_str)
for lang in ALL_LANGUAGES, (input_path, reference_output) in inputs_solutions
our_output = run_solution(day_num_str, input_path, Val(Symbol(lang)))
reference_output
Expand Down

0 comments on commit 5f7a34e

Please sign in to comment.