Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
kingslayerrq committed Dec 18, 2023
1 parent 4683c18 commit 52dbb0f
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/app-test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: app tests

run-name: ${{ github.actor }}

on:
push:
branches: [main, master]
pull_request:
branches: [main, master]

jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11"]

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
sudo apt-get update
python -m pip install --upgrade pip
python -m pip install pipenv
pipenv shell --fancy --python $(which python)
pipenv install -r requirements.txt
working-directory: web-app

- name: Run tests
run: |
pipenv run pytest --cov=app test_app.py
working-directory: web-app/app_tests

0 comments on commit 52dbb0f

Please sign in to comment.