From e9b69015cd2e89ba4fa45dcf42fde23ef9051954 Mon Sep 17 00:00:00 2001 From: Christie Wilson Date: Tue, 5 Feb 2019 17:24:01 -0800 Subject: [PATCH] Re-enable yaml end to end tests Verifying the pipelinerun example worked was disabled due to the combo of #375 and #443, but now that we've removed the extra log PVC in #443 we shouldn't run into this issue anymore :D --- test/e2e-tests-yaml.sh | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/test/e2e-tests-yaml.sh b/test/e2e-tests-yaml.sh index 94a9d710d94..d2de242b8eb 100755 --- a/test/e2e-tests-yaml.sh +++ b/test/e2e-tests-yaml.sh @@ -33,12 +33,7 @@ install_pipeline_crd # Run the tests failed=0 -# FIXME(vdemeester) add pipelinerun to the test… -# They are currently block by -# - https://github.com/knative/build-pipeline/issues/375 -# - https://github.com/knative/build-pipeline/pull/443 -# for test in taskrun pipelinerun; do -for test in taskrun; do +for test in taskrun pipelinerun; do header "Running YAML e2e tests for ${test}s" if ! run_yaml_tests ${test}; then echo "ERROR: one or more YAML tests failed"