fix incorrenct return type update, and removed Awaitable[ for coroutine (awaitable doesnt allow the use of asyncio create_task #1058
Workflow file for this run
This file contains hidden or 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: Tests | |
on: [ pull_request ] | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.11 | |
- uses: pre-commit/action@v3.0.0 | |
run-tests: | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" ] | |
mongodb-version: [ 4.4, 5.0 ] | |
pydantic-version: [ "1.10.15", "2.7" ] | |
exclude: | |
- python-version: "3.7" | |
pydantic-version: "2.7" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: pip | |
cache-dependency-path: pyproject.toml | |
- name: Start MongoDB | |
uses: supercharge/mongodb-github-action@1.8.0 | |
with: | |
mongodb-version: ${{ matrix.mongodb-version }} | |
mongodb-replica-set: test-rs | |
- name: install dependencies | |
run: pip install .[test,ci] | |
- name: install pydantic | |
run: pip install pydantic==${{ matrix.pydantic-version }} | |
- name: run tests | |
run: pytest -v |