Skip to content

Commit 5e40115

Browse files
renaming Test Automation script folder
1 parent 115d811 commit 5e40115

File tree

15 files changed

+6
-7
lines changed

15 files changed

+6
-7
lines changed

.github/workflows/test-automation.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@ on:
55
branches:
66
- main
77
- dev
8-
- migrate-test-automation
98
paths:
10-
- 'tests/e2e-tests/**'
9+
- 'tests/e2e-test/**'
1110
schedule:
1211
- cron: '0 13 * * *' # Runs at 1 PM UTC
1312
workflow_dispatch:
@@ -45,7 +44,7 @@ jobs:
4544
- name: Install dependencies
4645
run: |
4746
python -m pip install --upgrade pip
48-
pip install -r tests/e2e-tests/requirements.txt
47+
pip install -r tests/e2e-test/requirements.txt
4948
5049
- name: Ensure browsers are installed
5150
run: python -m playwright install --with-deps chromium
@@ -54,7 +53,7 @@ jobs:
5453
id: test1
5554
run: |
5655
xvfb-run pytest --headed --html=report/report.html --self-contained-html
57-
working-directory: tests/e2e-tests
56+
working-directory: tests/e2e-test
5857
continue-on-error: true
5958

6059
- name: Sleep for 30 seconds
@@ -67,7 +66,7 @@ jobs:
6766
if: ${{ steps.test1.outcome == 'failure' }}
6867
run: |
6968
xvfb-run pytest --headed --html=report/report.html --self-contained-html
70-
working-directory: tests/e2e-tests
69+
working-directory: tests/e2e-test
7170
continue-on-error: true
7271

7372
- name: Sleep for 60 seconds
@@ -80,15 +79,15 @@ jobs:
8079
if: ${{ steps.test2.outcome == 'failure' }}
8180
run: |
8281
xvfb-run pytest --headed --html=report/report.html --self-contained-html
83-
working-directory: tests/e2e-tests
82+
working-directory: tests/e2e-test
8483

8584
- name: Upload test report
8685
id: upload_report
8786
uses: actions/upload-artifact@v4
8887
if: ${{ !cancelled() }}
8988
with:
9089
name: test-report
91-
path: tests/e2e-tests/report/*
90+
path: tests/e2e-test/report/*
9291

9392
- name: Send Notification
9493
if: always()
File renamed without changes.

0 commit comments

Comments
 (0)