pipelines/backend/test/integration
gkcalat 9ec4dc7f30
fix(backend): Add pipeline spec name validation and relax display name validation (#9374)
* Add pipeline name check at creation time

* Revert changes for pipeline version

* Validate pipeline spec name and relax display name

* Fix e2e test
2023-05-11 23:57:30 +00:00
..
README.md [Backend] Refactor integration tests, facilitate local testing (#3138) 2020-02-20 23:02:32 -08:00
experiment_api_test.go test: Add v2 API integration tests (#9185) 2023-04-27 20:20:39 +00:00
flags.go test: Add v2 API integration tests (#9185) 2023-04-27 20:20:39 +00:00
healthz_api_test.go fix(conformance): enable healthz test in full Kubeflow. (#9297) 2023-05-04 02:02:44 +00:00
job_api_test.go test: Add v2 API integration tests (#9185) 2023-04-27 20:20:39 +00:00
pipeline_api_test.go fix(backend): Add pipeline spec name validation and relax display name validation (#9374) 2023-05-11 23:57:30 +00:00
pipeline_version_api_test.go fix(backend): Add pipeline spec name validation and relax display name validation (#9374) 2023-05-11 23:57:30 +00:00
run_api_test.go test: Add v2 API integration tests (#9185) 2023-04-27 20:20:39 +00:00
run_tests_locally.sh test: Add v2 API integration tests (#9185) 2023-04-27 20:20:39 +00:00
upgrade_test.go test: Add v2 API integration tests (#9185) 2023-04-27 20:20:39 +00:00
visualization_api_test.go test: Add v2 API integration tests (#9185) 2023-04-27 20:20:39 +00:00

README.md

Api Server Integration Tests

WARNING

These integration tests will delete all the data in your KFP instance, please only use a test cluster to run these.

How to run

  1. Configure kubectl to connect to your kfp cluster.
  2. Run the following for all integration tests: NAMESPACE=<kfp-namespace> ./run_tests_locally.sh.
  3. Or run the following to select certain tests: NAMESPACE=<kfp-namespace> ./run_tests_locally.sh -testify.m Job. Reference: https://stackoverflow.com/a/43312451