From e243c41110b3425f8e1cc56b00a4fc2337345861 Mon Sep 17 00:00:00 2001 From: Nizamudeen A Date: Wed, 7 Jun 2023 14:04:33 +0530 Subject: [PATCH] qa/workunits: fix test_dashboard_e2e.sh: no spec files found Fixes: https://tracker.ceph.com/issues/61578 Signed-off-by: Nizamudeen A (cherry picked from commit bec3140b20b817e8f8e7108541839cb7117e863a) --- qa/workunits/cephadm/test_dashboard_e2e.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/qa/workunits/cephadm/test_dashboard_e2e.sh b/qa/workunits/cephadm/test_dashboard_e2e.sh index 28e1b097a0e66..32e0bcc771d39 100755 --- a/qa/workunits/cephadm/test_dashboard_e2e.sh +++ b/qa/workunits/cephadm/test_dashboard_e2e.sh @@ -96,12 +96,12 @@ ceph dashboard ac-user-set-password admin -i "${DASHBOARD_ADMIN_SECRET_FILE}" -- # See /ceph/src/pybind/mgr/dashboard/frontend/cypress/integration/orchestrator/ folder. find cypress # List all specs -cypress_run "orchestrator/01-hosts.e2e-spec.ts" +cypress_run "cypress/e2e/orchestrator/01-hosts.e2e-spec.ts" # Hosts are removed and added in the previous step. Do a refresh again. ceph orch device ls --refresh sleep 10 ceph orch device ls --format=json | tee cypress/fixtures/orchestrator/inventory.json -cypress_run "orchestrator/03-inventory.e2e-spec.ts" -cypress_run "orchestrator/04-osds.e2e-spec.ts" 300000 +cypress_run "cypress/e2e/orchestrator/03-inventory.e2e-spec.ts" +cypress_run "cypress/e2e/orchestrator/04-osds.e2e-spec.ts" 300000 -- 2.39.5