Skip to content

Commit 2ee9b73

Browse files
committed
Add Aqua to the test suite
Turns out we commit type piracy on `Base.display()`, so the piracy test is disabled for now.
1 parent 4885721 commit 2ee9b73

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

Project.toml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,19 @@ UUIDs = "cf7118a7-6976-5b1a-9a39-7adc72f591a4"
2020
ZMQ = "c2297ded-f4af-51ae-bb23-16f91089e4e1"
2121

2222
[compat]
23+
Base64 = "1"
2324
Conda = "1"
25+
Dates = "1"
26+
InteractiveUtils = "1"
2427
JSON = "0.18,0.19,0.20,0.21,1"
28+
Logging = "1"
29+
Markdown = "1"
2530
MbedTLS = "0.5,0.6,0.7,1"
31+
Pkg = "1"
32+
Printf = "1"
33+
REPL = "1"
34+
Random = "1"
2635
SoftGlobalScope = "1"
36+
UUIDs = "1"
2737
ZMQ = "1.3"
2838
julia = "1.10"

test/runtests.jl

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
1+
import Aqua
2+
import IJulia
3+
14
const TEST_FILES = [
25
"install.jl", "comm.jl", "msg.jl", "execute_request.jl", "stdio.jl",
3-
"inline.jl",
6+
"inline.jl"
47
]
58

69
for file in TEST_FILES
710
println(file)
811
include(file)
912
end
13+
14+
Aqua.test_all(IJulia; piracies=(; broken=true))

0 commit comments

Comments
 (0)