Skip to content

Commit 041e620

Browse files
committed
Merge branch 'tor/fixing-test-timeout' into tor/advancedhmc-update
2 parents 7dd9558 + 604e3e2 commit 041e620

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

test/test_utils/staging.jl

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ end
3939

4040
macro stage_testset(stage_string::String, args...)
4141
if do_test(stage_string)
42-
return esc(:(@timed_testset($(args...))))
42+
return esc(:(@testset($(args...))))
4343
end
4444
end
4545

@@ -50,13 +50,3 @@ end
5050
macro turing_testset(args...)
5151
esc(:(@stage_testset "test" $(args...)))
5252
end
53-
54-
macro timed_testset(name, args...)
55-
expr = quote
56-
start = time()
57-
@testset($name, $(args...))
58-
let name = $name
59-
@info "$(name): $(time() - start)s"
60-
end
61-
end
62-
end

0 commit comments

Comments
 (0)