mirror of
https://github.com/fauxpilot/fauxpilot.git
synced 2025-08-21 05:44:09 -07:00
Basic action that runs pytest
This commit is contained in:
parent
fd484a2b03
commit
f599b2ec65
1 changed files with 17 additions and 0 deletions
17
.github/workflows/python_backend_tests.yaml
vendored
Normal file
17
.github/workflows/python_backend_tests.yaml
vendored
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
name: FauxPilot Python Backend Tests
|
||||||
|
|
||||||
|
on: [push]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- uses: actions/setup-python@v4
|
||||||
|
- name: Install dependencies
|
||||||
|
run: |
|
||||||
|
python -m pip install --upgrade pip
|
||||||
|
pip install -r tests/python_backend/requirements.txt
|
||||||
|
- name: Run tests
|
||||||
|
run: pytest tests
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue