Skip to content

Commit 4548ec2

Browse files
simeonschaubaviatesk
authored andcommitted
remove DiffUtils dependency
1 parent 20206f4 commit 4548ec2

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

Project.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ julia = "1"
1515
[extras]
1616
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
1717
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
18-
DiffUtils = "8294860b-85a6-42f8-8c35-d911f667b5f6"
1918
Distributed = "8ba89e20-285c-5b6f-9357-94700520ee1b"
2019
HTTP = "cd3eb016-35fb-5094-929b-558a96fad6f3"
2120
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
@@ -28,4 +27,4 @@ Tensors = "48a634ad-e948-5137-8d70-aa71f2a747f4"
2827
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
2928

3029
[targets]
31-
test = ["Test", "Dates", "DiffUtils", "Distributed", "HTTP", "LinearAlgebra", "Mmap", "PyCall", "SHA", "SparseArrays", "Tensors", "TableReader", "DataFrames"]
30+
test = ["Test", "Dates", "Distributed", "HTTP", "LinearAlgebra", "Mmap", "PyCall", "SHA", "SparseArrays", "Tensors", "TableReader", "DataFrames"]

test/code_coverage/code_coverage.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ let
88
end
99
end
1010

11-
using DiffUtils
11+
#using DiffUtils
1212

1313
@testset "code coverage" begin
1414
out = read(`$(Base.julia_cmd()) --startup=no --project=$(dirname(dirname(@__DIR__))) --code-coverage=user
@@ -25,8 +25,8 @@ using DiffUtils
2525
cov_data = replace(cov_data, "\r\n" => "\n")
2626
expected = replace(cov_data, "\r\n" => "\n")
2727
end
28-
if cov_data != expected
29-
DiffUtils.diff(cov_data, expected)
30-
end
28+
#if cov_data != expected
29+
# DiffUtils.diff(cov_data, expected)
30+
#end
3131
@test cov_data == expected
3232
end

0 commit comments

Comments
 (0)