forked from JuliaData/DataFrames.jl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun_tests.jl
37 lines (32 loc) · 889 Bytes
/
run_tests.jl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#
# Correctness Tests
#
require("test.jl")
using DataFrames
my_tests = ["test/dataarray.jl",
"test/extras.jl",
"test/pooleddataarray.jl",
"test/data.jl",
"test/index.jl",
"test/dataframe.jl",
"test/operators.jl",
"test/io.jl",
# "test/formula.jl",
# "test/datastream.jl",
"test/constructors.jl",
"test/abstractarray.jl",
"test/booleans.jl",
"test/indexing.jl",
"test/indexedvector.jl",
"test/sort.jl",
"test/iteration.jl",
"test/colfuncs.jl",
"test/duplicates.jl",
"test/padding.jl",
"test/tabulation.jl",
"test/datamatrix.jl"]
println("Running tests:")
for my_test in my_tests
println(" * $(my_test)")
include(my_test)
end