Skip to content

Commit 137eaed

Browse files
committed
add env info to tests
1 parent 0bb388b commit 137eaed

File tree

2 files changed

+16
-5
lines changed

2 files changed

+16
-5
lines changed

test/Project.toml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
[deps]
2-
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
32
Arrow = "69666777-d1a9-59fb-9406-91d4454c9d45"
43
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
5-
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
6-
OnlineStats = "a15396b6-48d5-5d58-9928-6d29437db91e"
7-
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
8-
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
94
Dagger = "d58978e5-989f-55fb-8d15-ea34adc7bf54"
105
DataAPI = "9a962f9c-6df0-11e9-0e5d-c546b8b5ee8a"
6+
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
7+
Distributed = "8ba89e20-285c-5b6f-9357-94700520ee1b"
118
InvertedIndices = "41ab1584-1d38-5bbf-9106-f11c6c58b48f"
9+
OnlineStats = "a15396b6-48d5-5d58-9928-6d29437db91e"
10+
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
1211
SentinelArrays = "91c51154-3ec4-41a3-a24f-3f23e20d615c"
12+
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
1313
TableOperations = "ab02a1b2-a7df-11e8-156e-fb1833f50b87"
1414
Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c"
15+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

test/runtests.jl

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
using DTables
22
using Test
33

4+
using Distributed
5+
6+
@info(
7+
"Execution environment details",
8+
julia_version=VERSION,
9+
n_workers=Distributed.nworkers(),
10+
n_procs=Distributed.nprocs(),
11+
n_threads=Threads.nthreads(),
12+
)
13+
414
@testset "DTables.jl" begin
515
include("table.jl")
616
include("table_dataframes.jl")

0 commit comments

Comments
 (0)