Skip to content

Commit

Permalink
Merge pull request #103 from rjsadow/e2e-fix
Browse files Browse the repository at this point in the history
Changed run-e2e to manage --conformance
  • Loading branch information
rjsadow authored Jan 17, 2024
2 parents 732dc73 + efa7b94 commit 8cd8696
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hack/run-e2e.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,6 @@ function run_test {
fi

bin/hydrophone \
--focus "${FOCUS}" \
--skip "${SKIP}" \
--output-dir ${ARTIFACTS}/results/ \
--conformance-image registry.k8s.io/conformance:${K8S_VERSION} \
$EXTRA_ARGS| tee /tmp/test.log
Expand Down Expand Up @@ -95,6 +93,8 @@ fi
# If CONFORMANCE is set, add --conformance to the EXTRA_ARGS
if [[ ${CONFORMANCE} == "true" ]]; then
EXTRA_ARGS="${EXTRA_ARGS} --conformance"
else
EXTRA_ARGS="${EXTRA_ARGS} --focus ${FOCUS} --skip ${SKIP}"
fi

setup_kind
Expand Down

0 comments on commit 8cd8696

Please sign in to comment.