Skip to content

Commit 115d811

Browse files
folder renamed for test automatioon
1 parent a6ddd23 commit 115d811

File tree

15 files changed

+7
-6
lines changed

15 files changed

+7
-6
lines changed

.github/workflows/test-automation.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ on:
55
branches:
66
- main
77
- dev
8+
- migrate-test-automation
89
paths:
9-
- 'TestAutomation/**'
10+
- 'tests/e2e-tests/**'
1011
schedule:
1112
- cron: '0 13 * * *' # Runs at 1 PM UTC
1213
workflow_dispatch:
@@ -44,7 +45,7 @@ jobs:
4445
- name: Install dependencies
4546
run: |
4647
python -m pip install --upgrade pip
47-
pip install -r TestAutomation/requirements.txt
48+
pip install -r tests/e2e-tests/requirements.txt
4849
4950
- name: Ensure browsers are installed
5051
run: python -m playwright install --with-deps chromium
@@ -53,7 +54,7 @@ jobs:
5354
id: test1
5455
run: |
5556
xvfb-run pytest --headed --html=report/report.html --self-contained-html
56-
working-directory: TestAutomation
57+
working-directory: tests/e2e-tests
5758
continue-on-error: true
5859

5960
- name: Sleep for 30 seconds
@@ -66,7 +67,7 @@ jobs:
6667
if: ${{ steps.test1.outcome == 'failure' }}
6768
run: |
6869
xvfb-run pytest --headed --html=report/report.html --self-contained-html
69-
working-directory: TestAutomation
70+
working-directory: tests/e2e-tests
7071
continue-on-error: true
7172

7273
- name: Sleep for 60 seconds
@@ -79,15 +80,15 @@ jobs:
7980
if: ${{ steps.test2.outcome == 'failure' }}
8081
run: |
8182
xvfb-run pytest --headed --html=report/report.html --self-contained-html
82-
working-directory: TestAutomation
83+
working-directory: tests/e2e-tests
8384

8485
- name: Upload test report
8586
id: upload_report
8687
uses: actions/upload-artifact@v4
8788
if: ${{ !cancelled() }}
8889
with:
8990
name: test-report
90-
path: TestAutomation/report/*
91+
path: tests/e2e-tests/report/*
9192

9293
- name: Send Notification
9394
if: always()
File renamed without changes.

0 commit comments

Comments
 (0)