Skip to content

Commit

Permalink
include the correct path
Browse files Browse the repository at this point in the history
  • Loading branch information
DilumAluthge authored Jul 8, 2021
1 parent 56b3905 commit 0fdaeac
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .buildkite/coverage-linux64/run_tests_serial.jl
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
using Test

const repository_root = dirname(dirname(@__DIR__))

for filename in ARGS
path = joinpath(repository_root, filename)
@info "Starting $(filename)"
try
@testset "$(filename)" begin
include(filename)
include(path)
end
catch ex
@error "" exception=(ex, catch_backtrace())
Expand Down

0 comments on commit 0fdaeac

Please sign in to comment.