From db339a4b732951ed29663f3aa742fc5a939b208a Mon Sep 17 00:00:00 2001 From: Karthikeyan C Date: Wed, 18 Dec 2024 14:44:37 +0530 Subject: [PATCH] fix the snapshots directory location --- .github/workflows/test-cases.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-cases.yml b/.github/workflows/test-cases.yml index 4f2e324..eebc3b5 100644 --- a/.github/workflows/test-cases.yml +++ b/.github/workflows/test-cases.yml @@ -84,11 +84,11 @@ jobs: run: | curl -L --fail -o ndc-test https://github.com/hasura/ndc-spec/releases/download/v0.1.6/ndc-test-x86_64-unknown-linux-gnu chmod +x ndc-test + sudo mv ndc-test /usr/local/bin/ - name: Run Tests - working-directory: static/relational/postgres run: | - ./ndc-test replay --endpoint http://localhost:8080 --snapshots-dir ../../relational + ndc-test replay --endpoint http://localhost:8080 --snapshots-dir relational - name: Collect Logs on Failure if: failure()