You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
See #351; helm test is failing but this is not properly reported to gubernator.
Here are the logs from Airflow from the run_tests step.
[2018-01-30 13:21:58,659] {base_task_runner.py:98} INFO - Subtask: INFO:root:Creating gs://kubernetes-jenkins/pr-logs/pull/tensorflow_k8s/354/tf-k8s-presubmit/442/artifacts/junit_e2e.xml
[2018-01-30 13:21:58,660] {base_task_runner.py:98} INFO - Subtask: Traceback (most recent call last):
[2018-01-30 13:21:58,660] {base_task_runner.py:98} INFO - Subtask: File "/usr/local/lib/python2.7/runpy.py", line 174, in _run_module_as_main
[2018-01-30 13:21:58,661] {base_task_runner.py:98} INFO - Subtask: "__main__", fname, loader, pkg_name)
[2018-01-30 13:21:58,661] {base_task_runner.py:98} INFO - Subtask: File "/usr/local/lib/python2.7/runpy.py", line 72, in _run_code
[2018-01-30 13:21:58,661] {base_task_runner.py:98} INFO - Subtask: exec code in run_globals
[2018-01-30 13:21:58,662] {base_task_runner.py:98} INFO - Subtask: File "/var/lib/data/runs/tf_k8s_tests/2018-01-30T13_12_48/tensorflow_k8s/py/deploy.py", line 220, in <module>
[2018-01-30 13:21:58,662] {base_task_runner.py:98} INFO - Subtask: main()
[2018-01-30 13:21:58,662] {base_task_runner.py:98} INFO - Subtask: File "/var/lib/data/runs/tf_k8s_tests/2018-01-30T13_12_48/tensorflow_k8s/py/deploy.py", line 217, in main
[2018-01-30 13:21:58,663] {base_task_runner.py:98} INFO - Subtask: args.func(args)
[2018-01-30 13:21:58,663] {base_task_runner.py:98} INFO - Subtask: File "/var/lib/data/runs/tf_k8s_tests/2018-01-30T13_12_48/tensorflow_k8s/py/deploy.py", line 117, in test
[2018-01-30 13:21:58,664] {base_task_runner.py:98} INFO - Subtask: t.failure = "helm test failed;\n" + e.output
[2018-01-30 13:21:58,664] {base_task_runner.py:98} INFO - Subtask: TypeError: cannot concatenate 'str' and 'NoneType' objects
So because an exception is occurring we never set t.failure and the test isn't reported as failed.
@jose5918 can you fix this is in the same PR as #351? We can't fix this issue without the fix to #351 because without that fix the tests won't pass.
The text was updated successfully, but these errors were encountered:
* Helm test was failing because validation for a tfjob required that replicaSpecs for a Parameter server specify a template. Helm test failure also was not reported.
Changes made:
* Updated e2e tests and examples to include a template for the PS replicaSpec
* Check for None before concatenating the error.
* Fixes#351 and #355
See #351; helm test is failing but this is not properly reported to gubernator.
Here are the logs from Airflow from the run_tests step.
So because an exception is occurring we never set t.failure and the test isn't reported as failed.
@jose5918 can you fix this is in the same PR as #351? We can't fix this issue without the fix to #351 because without that fix the tests won't pass.
The text was updated successfully, but these errors were encountered: