Skip to content

Commit

Permalink
Merge pull request #12 from dotX12/dev-1.0
Browse files Browse the repository at this point in the history
added tests, change typehints 3.10 to old syntax
  • Loading branch information
dotX12 authored Sep 13, 2022
2 parents b743689 + de4aef3 commit 01e0c04
Show file tree
Hide file tree
Showing 10 changed files with 524 additions and 38 deletions.
69 changes: 69 additions & 0 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
name: test

on: pull_request

jobs:
test:
strategy:
fail-fast: true
matrix:
os: [ "ubuntu-latest", "macos-latest" ]
python-version: [ '3.7', '3.8', '3.9', '3.10' ]
name: Python ${{ matrix.python-version }} OS ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
#----------------------------------------------
# check-out repo and set-up python
#----------------------------------------------
- name: Check out repository
uses: actions/checkout@v2
- name: Set up python ${{ matrix.python-version }}
id: setup-python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}

#----------------------------------------------
# ----- install & configure poetry -----
#----------------------------------------------
- name: Install Poetry
uses: snok/install-poetry@v1
with:
version: 1.2.0
virtualenvs-path: .venv
virtualenvs-create: true
virtualenvs-in-project: false
installer-parallel: true

#----------------------------------------------
# load cached venv if cache exists
#----------------------------------------------
- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v2
with:
path: .venv
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}
#----------------------------------------------
# install dependencies if cache does not exist
#----------------------------------------------

- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction --no-root
#----------------------------------------------
# install your root project, if required
#----------------------------------------------
- name: Install library
run: poetry install --no-interaction --with tests
#----------------------------------------------
# run test suite
#----------------------------------------------
- name: Check black
run: |
poetry add --dev black --allow-prereleases
poetry run black . --check
- name: Run tests
run: |
poetry run pytest
7 changes: 5 additions & 2 deletions examples/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
from fastapi import File
from fastapi import UploadFile

from examples.models import PostContractBodySchema, ExampleSchemaForHeader, PostContractBodySchemaOldSupport
from examples.models import (
PostContractBodySchema,
ExampleSchemaForHeader,
PostContractBodySchemaOldSupport,
)
from examples.models import PostContractJSONSchema
from examples.models import PostContractSmallDoubleBodySchema
from examples.models import PostContractSmallDoubleQuerySchema
Expand Down Expand Up @@ -74,4 +78,3 @@ async def example_foo_body_handler(
document: UploadFile = File(...),
):
return {"title": data.title, "date": data.date, "file_name": document.filename}

Loading

0 comments on commit 01e0c04

Please sign in to comment.