Utility function to run async coroutines #60
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: pytests-ords | |
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.8] | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
fetch-depth: 1 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: conda-incubator/setup-miniconda@v2 | |
with: | |
auto-update-conda: true | |
python-version: ${{ matrix.python-version }} | |
miniconda-version: "latest" | |
- name: Install dependencies' | |
shell: bash -l {0} | |
run: | | |
python -c "import sqlite3; print(0, sqlite3)" | |
conda install -c conda-forge poppler --freeze-installed --no-update-deps --no-channel-priority | |
python -c "import sqlite3; print(1, sqlite3)" | |
python -m pip install --upgrade pip | |
python -c "import sqlite3; print(2, sqlite3)" | |
python -m pip install pdftotext | |
python -c "import sqlite3; print(3, sqlite3)" | |
python -m pip install pytest | |
python -c "import sqlite3; print(4, sqlite3)" | |
python -m pip install pytest-mock | |
python -c "import sqlite3; print(5, sqlite3)" | |
python -m pip install pytest-cov | |
python -c "import sqlite3; print(6, sqlite3)" | |
python -m pip install . | |
python -c "import sqlite3; print(7, sqlite3)" | |
playwright install | |
python -c "import sqlite3; print(8, sqlite3)" | |
- name: Run pytest and Generate coverage report | |
shell: bash -l {0} | |
run: | | |
python -m pytest -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 |