Skip to content

Commit

Permalink
Fix template runtests.jl to include file not title
Browse files Browse the repository at this point in the history
Closes #452
  • Loading branch information
abelsiqueira committed Sep 10, 2024
1 parent 36d84e0 commit 4ee50c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning].
### Fixed

- The TestGeneratedPkg workflow now runs the latest unreleased version of the pkg (#450)
- The tests of the generated package correctly include the `test-*.jl` files (#452)

## [0.10.0] - 2024-09-10

Expand Down
2 changes: 1 addition & 1 deletion template/test/runtests.jl.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ for (root, dirs, files) in walkdir(@__DIR__)
end
title = titlecase(replace(splitext(file[6:end])[1], "-" => " "))
@testset "$title" begin
include(title)
include(file)
end
end
end
Expand Down

0 comments on commit 4ee50c7

Please sign in to comment.