Skip to content

Commit a8845f6

Browse files
committed
Merge branch '2.8' into merge-2.8-20210817
2 parents 3d2c55b + d0609df commit a8845f6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

acceptancetests/assess_caas_deploy_kubeflow.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,6 +319,7 @@ def prepare(caas_client, caas_provider, build):
319319

320320
caas_client.sh('rm', '-rf', f'{KUBEFLOW_DIR}')
321321
caas_client.sh('git', 'clone', KUBEFLOW_REPO_URI, KUBEFLOW_DIR)
322+
caas_client.sh('pip3', 'install', 'tox')
322323
caas_client.sh(
323324
'pip3', 'install',
324325
'-r', f'{KUBEFLOW_DIR}/requirements.txt',
@@ -354,7 +355,8 @@ def run_test(caas_provider, caas_client, k8s_model, bundle, build):
354355
# TODO: tmp fix, remove me later once current kubeflow master branch published.
355356
caas_client.sh('git', 'reset', '--hard', '5e0b6fcb')
356357

357-
run("sg", "microk8s", "-c", f"{KUBEFLOW_DIR}/tests/run.sh -m {bundle}")
358+
run("tox", "-e", "tests", "--", f"-m {bundle} -k 'not selenium'")
359+
run("tox", "-e", "tests", "--", f"-m {bundle} -k 'selenium'")
358360

359361

360362
def dump_k8s_log(artifacts_dir, file_name, content):

0 commit comments

Comments
 (0)