Skip to content

Commit

Permalink
Fix Windows test skipping (digital-asset#9881)
Browse files Browse the repository at this point in the history
= doesn’t seem to work. -ceq is case insensitive comparison. I think
-eq would also work here but I see no point in worrying about case.

changelog_begin
changelog_end
  • Loading branch information
cocreature authored Jun 2, 2021
1 parent c1ab7b0 commit 0c514b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,6 @@ bazel build `-`-experimental_execution_log_file ${ARTIFACT_DIRS}/logs/build_exec

bazel shutdown

if ($env:SKIP_TESTS = "False") {
if ($env:SKIP_TESTS -ceq "False") {
bazel test `-`-experimental_execution_log_file ${ARTIFACT_DIRS}/logs/test_execution_windows.log //...
}

0 comments on commit 0c514b3

Please sign in to comment.