Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 822 Bytes

tests.md

File metadata and controls

28 lines (19 loc) · 822 Bytes

Running E2E Tests

  1. Ensure operator-sdk v0.17.2 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 build).
operator-sdk test local --up-local ./test/e2e \
  --operator-namespace openshift-pipelines-operator \
  --verbose --debug

Reference