feat: workflow mock test

This commit is contained in:
Yeuoly
2024-03-10 18:41:01 +08:00
parent 4b37d30c0d
commit b5cb38641a
6 changed files with 311 additions and 6 deletions

View File

@ -0,0 +1,30 @@
name: Run Pytest
on:
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
env:
MOCK_SWITCH: true
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
cache: 'pip'
cache-dependency-path: ./api/requirements.txt
- name: Install dependencies
run: pip install -r ./api/requirements.txt
- name: Run pytest
run: pytest api/tests/integration_tests/workflow