Skip to content

Commit 53b308d

Browse files
authored
Merge pull request #164 from DilumAluthge/dpa/test-interactive-utils
Print `versioninfo(; verbose = true)` at the beginning of the test suite
2 parents fded771 + 2962a54 commit 53b308d

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

Project.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,9 @@ VectorizationBase = "0.13.4"
2424
julia = "1.5"
2525

2626
[extras]
27+
InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
2728
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
2829
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
2930

3031
[targets]
31-
test = ["Random", "Test"]
32+
test = ["InteractiveUtils", "Random", "Test"]

test/runtests.jl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ using Test
22
using LoopVectorization
33
using LinearAlgebra
44

5+
import InteractiveUtils
6+
7+
InteractiveUtils.versioninfo(stdout; verbose = true)
8+
59
# const START_TIME = time()
610
# exceeds_time_limit() = (time() - START_TIME) > 35 * 60
711

0 commit comments

Comments
 (0)