-
Notifications
You must be signed in to change notification settings - Fork 148
87 lines (72 loc) · 2.22 KB
/
test-vizro-ai-ui.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
name: Integration tests for VizroAI UI
defaults:
run:
working-directory: vizro-ai
on:
push:
branches: [main]
pull_request:
branches:
- qa/component_library_tests
- main
paths:
- "vizro-ai/**"
- "!vizro-ai/docs/**"
env:
PYTHONUNBUFFERED: 1
FORCE_COLOR: 1
jobs:
test-vizro-ai-ui-fork:
if: ${{ github.event.pull_request.head.repo.fork }}
name: test-vizro-ai-ui
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Passed fork step
run: echo "Success!"
test-vizro-ai-ui:
if: ${{ ! github.event.pull_request.head.repo.fork }}
name: test-vizro-ai-ui
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install Hatch
run: pip install hatch
- name: Show dependency tree
run: hatch run tests:pip tree
- name: Run vizroAI UI tests
run: |
python examples/dashboard_ui/app.py &
tests/vizro_ai_ui/wait-for-it.sh 127.0.0.1:8050 -t 30
hatch run tests:test-vizro-ai-ui
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
OPENAI_API_BASE: ${{ secrets.OPENAI_API_BASE }}
- name: Copy failed screenshots
if: failure()
run: |
mkdir /home/runner/work/vizro/vizro/vizro-ai/failed_screenshots/
cp tests*.png failed_screenshots
- name: Archive screenshot artifacts
uses: actions/upload-artifact@v4
if: failure()
with:
name: Failed screenshots
path: |
/home/runner/work/vizro/vizro/vizro-ai/failed_screenshots/*.png
- name: Send custom JSON data to Slack
id: slack
uses: slackapi/slack-github-action@v1.26.0
if: failure()
with:
payload: |
{
"text": "VizroAI UI tests build result: ${{ job.status }}\nBranch: ${{ github.head_ref }}\n${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"
}
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK