Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pkg test suite: skip one of the artifacts tests on Buildkite #2823

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion test/artifacts.jl
Original file line number Diff line number Diff line change
Expand Up @@ -687,7 +687,12 @@ end
arty_path, barty_path
end)

@test arty_path == barty_override_path
if parse(Bool, get(ENV, "BUILDKITE", "false"))
# TODO: fix this test on Buildkite
@test_skip arty_path == barty_override_path
else
@test arty_path == barty_override_path
end
@test barty_path == barty_override_path
end

Expand Down