github.com/kubeflow/training-operator@v1.7.0/sdk/python/conformance/run.sh (about)

     1  #!/bin/sh
     2  
     3  # Run conformance test and generate test report.
     4  pytest test/e2e/ --namespace=kf-conformance -v | tee /tmp/training-operator-conformance.log
     5  
     6  # Create the done file.
     7  touch /tmp/training-operator-conformance.done
     8  echo "Done..."
     9  
    10  # Keep the container running so the test logs can be downloaded.
    11  while true; do sleep 10000; done