Skip to content

End-to-End Test

End-to-End Test #16

Workflow file for this run

name: End-to-End Test
on:
pull_request:
schedule:
- cron: '0 0 * * 0' # Run every Sunday at 00:00 UTC
jobs:
bug_reproduction:
timeout-minutes: 1440
runs-on: [self-hosted, Linux, X64]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '1.20.5'
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.8'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
make
- name: Create profile dir with 777 mode
run: |
mkdir -m 777 -p profile/data
- name: Run bug reproduction
run: |
pytest -m "local"