Skip to content

Commit a0af75f

Browse files
committed
move to test/Project.toml, drop inactive TableReader test
1 parent c941ea3 commit a0af75f

File tree

6 files changed

+17
-33
lines changed

6 files changed

+17
-33
lines changed

Project.toml

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,3 @@ UUIDs = "cf7118a7-6976-5b1a-9a39-7adc72f591a4"
1111
[compat]
1212
CodeTracking = "0.5.9, 1"
1313
julia = "1.6"
14-
15-
[extras]
16-
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
17-
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
18-
Distributed = "8ba89e20-285c-5b6f-9357-94700520ee1b"
19-
HTTP = "cd3eb016-35fb-5094-929b-558a96fad6f3"
20-
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
21-
Mmap = "a63ad114-7e13-5084-954f-fe012c677804"
22-
PyCall = "438e738f-606a-5dbb-bf0a-cddfbfd45ab0"
23-
SHA = "ea8e919c-243c-51af-8825-aaa63cd721ce"
24-
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
25-
TableReader = "70df011a-6618-58d7-8e16-3cf9e384cb47"
26-
Tensors = "48a634ad-e948-5137-8d70-aa71f2a747f4"
27-
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
28-
29-
[targets]
30-
test = ["Test", "Dates", "Distributed", "HTTP", "LinearAlgebra", "Mmap", "PyCall", "SHA", "SparseArrays", "Tensors", "TableReader", "DataFrames"]

test/Project.toml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
[deps]
2+
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
3+
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
4+
Distributed = "8ba89e20-285c-5b6f-9357-94700520ee1b"
5+
HTTP = "cd3eb016-35fb-5094-929b-558a96fad6f3"
6+
InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
7+
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
8+
Mmap = "a63ad114-7e13-5084-954f-fe012c677804"
9+
PyCall = "438e738f-606a-5dbb-bf0a-cddfbfd45ab0"
10+
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
11+
SHA = "ea8e919c-243c-51af-8825-aaa63cd721ce"
12+
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
13+
Tensors = "48a634ad-e948-5137-8d70-aa71f2a747f4"
14+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

test/breakpoints.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ end
2020
close(io)
2121
include(tmppath)
2222

23-
using JuliaInterpreter, CodeTracking, Test
23+
using JuliaInterpreter, JuliaInterpreter.CodeTracking, Test
2424

2525
function stacklength(frame)
2626
n = 1

test/debug.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using CodeTracking, JuliaInterpreter, Test
1+
using JuliaInterpreter, JuliaInterpreter.CodeTracking, Test
22
using JuliaInterpreter: enter_call, enter_call_expr, get_return, @lookup
33
using Base.Meta: isexpr
44
include("utils.jl")

test/interpret.jl

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using JuliaInterpreter
22
using JuliaInterpreter: enter_call_expr
3-
using Test, InteractiveUtils, CodeTracking
3+
using Test, InteractiveUtils, JuliaInterpreter.CodeTracking
44
using Mmap
55
using LinearAlgebra
66

@@ -674,17 +674,6 @@ g(x) = f(x)
674674
f(x) = x*x
675675
@test (@interpret g(5)) == g(5)
676676

677-
# Regression test https://github.com/JuliaDebug/JuliaInterpreter.jl/issues/300
678-
module CSVTest
679-
using Test
680-
using JuliaInterpreter
681-
@static if sizeof(Int) == 8 && VERSION.minor < 3 # TableReader seems to not work on 32 bit or 1.4, 1.3
682-
using TableReader
683-
const myfile = "smallcsv.csv"
684-
@test (@interpret readcsv(myfile)) == readcsv(myfile)
685-
end
686-
end
687-
688677
# Regression test https://github.com/JuliaDebug/JuliaInterpreter.jl/issues/328
689678
module DataFramesTest
690679
using Test

test/smallcsv.csv

Lines changed: 0 additions & 2 deletions
This file was deleted.

0 commit comments

Comments
 (0)