f75565a227cf0f693b681838978d3e1f0a7e8a24,testing/deploy_kubeflow.py,,deploy_kubeflow,#Any#,46

Before Change



  // Verify that PyTorch Operator actually deployed
  pytorch_operator_deployment_name = "pytorch-operator"
  logging.info("Verifying PyTorchJob controller started.")
  util.wait_for_deployment(api_client, namespace, pytorch_operator_deployment_name)


def main():

After Change


  util.wait_for_statefulset(api_client, namespace, jupyter_name)

  // Verify that core components are actually deployed.
  deployment_names = ["tf-job-operator-v1beta1", "pytorch-operator", "studyjob-controller"]
  for deployment_name in deployment_names:
    logging.info("Verifying that %s started...", deployment_name)
    util.wait_for_deployment(api_client, namespace, deployment_name)

def main():
  test_case = test_helper.TestCase(
    name="deploy_kubeflow", test_func=deploy_kubeflow)
  test_suite = test_helper.init(
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 5

Instances


Project Name: kubeflow/kubeflow
Commit Name: f75565a227cf0f693b681838978d3e1f0a7e8a24
Time: 2019-01-18
Author: 39319471+richardsliu@users.noreply.github.com
File Name: testing/deploy_kubeflow.py
Class Name:
Method Name: deploy_kubeflow


Project Name: huggingface/neuralcoref
Commit Name: 70cab1d286a8717185e5b342f1923a80fc9a90a0
Time: 2019-10-22
Author: svlandeg@users.noreply.github.com
File Name: neuralcoref/train/conllparser.py
Class Name: ConllCorpus
Method Name: read_corpus


Project Name: kubeflow/kubeflow
Commit Name: f75565a227cf0f693b681838978d3e1f0a7e8a24
Time: 2019-01-18
Author: 39319471+richardsliu@users.noreply.github.com
File Name: testing/wait_for_kubeflow.py
Class Name:
Method Name: deploy_kubeflow