From fdaf93357882731f5cbd07ad5537599924dc4580 Mon Sep 17 00:00:00 2001 From: kleinwave Date: Mon, 16 Dec 2024 13:50:19 +0200 Subject: [PATCH] Add modifications to playwright-tests.yaml --- .github/workflows/playwright-tests.yaml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/playwright-tests.yaml b/.github/workflows/playwright-tests.yaml index 6a4387a..c83f956 100644 --- a/.github/workflows/playwright-tests.yaml +++ b/.github/workflows/playwright-tests.yaml @@ -37,9 +37,14 @@ jobs: - name: Create Qualibrate Configuration run: | source .venv/bin/activate - # qualibrate config --create - yes | qualibrate config # Create the Qualibrate configuration file - + qualibrate config --auto-accept \ + --spawn-runner True \ + --runner-address "http://localhost:8001/execution/" \ + --runner-timeout 2.0 \ + --app-storage-type local_storage \ + --app-user-storage "./user_storage" \ + --app-project "ci_project" \ + --log-folder "./logs" - name: Install Node.js uses: actions/setup-node@v3 @@ -48,7 +53,7 @@ jobs: - name: Install Playwright Dependencies run: | - npm ci + npm install npx playwright install --with-deps - name: Run Playwright Tests