Skip to content

Commit

Permalink
fix nightly docstring test failure (#30)
Browse files Browse the repository at this point in the history
workaround Julia nightly issue #55438 in return type of @doc (depends on whether REPL is imported)
  • Loading branch information
stevengj authored Aug 9, 2024
1 parent 34c89ca commit 1b79251
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ julia = "1"

[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
REPL = "3fa0cd96-eef1-5676-8a61-b3b8758bbffb"

[targets]
test = ["Test"]
test = ["Test", "REPL"]
1 change: 1 addition & 0 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
using StructIO
using Test
import REPL # needed for docstrings on nightly: julia#55438

# First, exercise the `@io` macro a bit, to ensure it can handle different
# kinds of type declarations
Expand Down

0 comments on commit 1b79251

Please sign in to comment.