Skip to content

Commit 553fe8f

Browse files
Require REPL during tests
Due to some migration of code from base to `REPL` for docs rendering one of the rendering tests was failing on 1.11. Paper over this issue by just requiring the package in the tests for now. It needs a better long-term solution though.
1 parent 2e954fc commit 553fe8f

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Project.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ julia = "1"
99
LibGit2 = "76f85450-5226-5b5a-8eaa-529ad045b433"
1010
Markdown = "d6f4376e-aef5-505a-96c1-9c027394607a"
1111
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
12+
REPL = "3fa0cd96-eef1-5676-8a61-b3b8758bbffb"
1213
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
1314

1415
[targets]
15-
test = ["LibGit2", "Markdown", "Pkg", "Test"]
16+
test = ["LibGit2", "Markdown", "Pkg", "REPL", "Test"]

test/runtests.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@ using DocStringExtensions
22
using Test
33
import Markdown
44
import LibGit2
5+
import REPL
56

67
include("tests.jl")

0 commit comments

Comments
 (0)