forked from streamlit/streamlit
-
Notifications
You must be signed in to change notification settings - Fork 1
83 lines (76 loc) · 2.86 KB
/
cypress-update-snapshots.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
name: Cypress update snapshots
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
inputs:
testname:
description: "Enter the test name to run (see e2e/specs/[testname].spec.js). For example: st_alert"
default: "st_alert"
type: "string"
required: true
# Avoid duplicate workflows on same branch
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event.inputs.testname }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
shell: bash --login -eo pipefail {0}
steps:
- name: Checkout Streamlit code
uses: actions/checkout@v4
with:
ref: ${{ github.ref_name }}
persist-credentials: false
submodules: "recursive"
fetch-depth: 2
- name: Set Python version vars
uses: ./.github/actions/build_info
- name: Set up Python ${{ env.PYTHON_MAX_VERSION }}
uses: actions/setup-python@v4
with:
python-version: "${{ env.PYTHON_MAX_VERSION }}"
- name: Setup virtual env
uses: ./.github/actions/make_init
- name: Install Cypress dependencies
run: |
sudo apt install -y xvfb libgtk2.0-0 libnotify-dev libgconf-2-4 libnss3 libxss1 libasound2 curl
- name: Run make develop
run: make develop
- name: Register Streamlit User & Mapbox Token
run: |
if [ ! -d $HOME/.streamlit ] ; then
mkdir $HOME/.streamlit
fi
echo '[mapbox]' > ~/.streamlit/config.toml
MAPBOX_TOKEN=$(curl -sS https://data.streamlit.io/tokens.json | jq -r '.["mapbox-localhost"]') \
&& echo 'token = "'$MAPBOX_TOKEN'"' >> ~/.streamlit/config.toml
echo '[general]' > ~/.streamlit/credentials.toml
echo 'email = "[email protected]"' >> ~/.streamlit/credentials.toml
- name: Run Cypress test
run: |
scripts/run_e2e_tests.py -u "e2e/specs/${{ inputs.testname }}.spec.js"
- name: Check that all screenshots have been committed
run: |
set -x;
UNTRACKED_FILE_COUNT=$(git ls-files --others --exclude-standard | grep cypress | wc -l | bc -l || echo '0')
echo "Untracked files count: ${UNTRACKED_FILE_COUNT}"
if [[ "${UNTRACKED_FILE_COUNT}" -gt 0 ]]; then
echo "Untracked files:";
git ls-files --others --exclude-standard | grep cypress;
exit 1;
fi
- name: Store Snapshots
uses: actions/upload-artifact@v3
if: always()
with:
name: cypress_snapshots
path: frontend/cypress/snapshots/linux/2x/${{ inputs.testname }}.spec.js
- name: Store Videos
uses: actions/upload-artifact@v3
if: always()
with:
name: cypress_videos
path: frontend/cypress/videos