Merge pull request #6262 from cevich/release-1.29-add_release_test
[release-1.29] Add conditional release-checking system test
This commit is contained in:
commit
f540694315
|
@ -133,3 +133,12 @@ load helpers
|
||||||
run_buildah images -q
|
run_buildah images -q
|
||||||
expect_output ""
|
expect_output ""
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@test "release" {
|
||||||
|
[[ "${RELEASE_TESTING:-false}" == "true" ]] || \
|
||||||
|
skip "Release testing may be enabled by setting \$RELEASE_TESTING = 'true'."
|
||||||
|
|
||||||
|
run_buildah --version
|
||||||
|
|
||||||
|
assert "$output" "!~" "dev" "The Buildah version string does not mention 'dev'."
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue