Skip to content

Commit

Permalink
add test workflow for psycopg2
Browse files Browse the repository at this point in the history
  • Loading branch information
spodgorny9 committed Sep 13, 2024
1 parent a690afe commit fd0b39b
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ jobs:
python -m pip install .
- name: Run pytest and Generate coverage report
run: |
python -m pytest --ignore=tests/ords --ignore=tests/utilities --ignore=tests/web -v --disable-warnings
python -m pytest --ignore=tests/ords --ignore=tests/utilities --ignore=tests/web --ignore=tests/test_wizard_postgres.py -v --disable-warnings
49 changes: 49 additions & 0 deletions .github/workflows/pytest_postgres.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: pytests-postgres

on: pull_request

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.11]

steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.ref }}
fetch-depth: 1
- name: Set up Python ${{ matrix.python-version }}
uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: true
channels: conda-forge,defaults
python-version: ${{ matrix.python-version }}
miniconda-version: "latest"
- name: Install dependencies
shell: bash -l {0}
run: |
python -m pip install --upgrade pip
python -m pip install psycopg2-binary
python -m pip install pytest
python -m pip install pytest-mock
python -m pip install pytest-cov
python -m pip install .
playwright install
- name: Run pytest and Generate coverage report
shell: bash -l {0}
run: |
python -m pytest --ignore=tests/ords --ignore=tests/utilities --ignore=tests/web -v --disable-warnings --cov=./ --cov-report=xml:coverage.xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.xml
flags: unittests
env_vars: OS,PYTHON
name: codecov-umbrella
fail_ci_if_error: false
verbose: true

0 comments on commit fd0b39b

Please sign in to comment.