Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 811 Bytes

tests.md

File metadata and controls

28 lines (19 loc) · 811 Bytes

Running E2E Tests

  1. Ensure operator-sdk v0.8.0 is installed.

  2. If the namespace openshift-pipelines-operator exists, delete it. Do this to make sure the namespace is clean.

oc delete namespace openshift-pipelines-operator
  1. Create the namespace openshift-pipelines-operator.
oc create namespace openshift-pipelines-operator
  1. Run the test using operator-sdk test command locally (without buid).
operator-sdk test local --up-local ./test/e2e \
  --namespace openshift-pipelines-operator \
  --verbose --debug

Reference