Skip to content

Commit

Permalink
Add test suite (#5)
Browse files Browse the repository at this point in the history
* Add tests

* Use current uvicorn impl

* Add pipeline

* add httpx

* Add a lot

* remove poetry lock

* Support for Python 3.12

* Remove hatch matrix

* Add pytest-xdist

* Install min and max version of gunicorn and uvicorn on the pipelien

* Update pipeline names

* Add types to TYPE_CHECKING

* Ignore warning

* Remove multiple versions

* Fix versions on the pipeline

* .

* ups

* ups

* Should be covered now

* Fix everything

* Fix everything

* add matrix with uvicorn and gunicorn

* and this

* and this

* and this

* and this

* and this

* and this

* and this

* and this

* and this

* and this

* Increase timeout
  • Loading branch information
Kludex committed Mar 30, 2024
1 parent a596903 commit 198223d
Show file tree
Hide file tree
Showing 18 changed files with 643 additions and 455 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Test Suite

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
tests:
name: |
Py ${{ matrix.python-version }} /
Uvicorn${{matrix.uvicorn-version == '' && ' (latest)' || format(' {0}', matrix.uvicorn-version) }} /
Gunicorn${{matrix.gunicorn-version == '' && ' (latest)' || format(' {0}', matrix.gunicorn-version) }}
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
uvicorn-version: ["0.14.0", ""]
gunicorn-version: ["20.1.0", ""]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "${{ matrix.python-version }}"
- name: Install dependencies
run: |
pip install "${{ format('uvicorn{0}{1}', matrix.uvicorn-version != '' && '==' || '', matrix.uvicorn-version) }}"
pip install "${{ format('gunicorn{0}{1}', matrix.gunicorn-version != '' && '==' || '', matrix.gunicorn-version) }}"
scripts/install
- name: Run linting checks
run: scripts/check
- name: Build package
run: scripts/build
- name: Run tests
run: scripts/test
timeout-minutes: 10
- name: Enforce coverage
run: scripts/coverage
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
__pycache__
dist
.coverage*
27 changes: 27 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
Copyright © 2024, Marcelo Trylesinski.
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

* Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.

* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.

* Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
8 changes: 0 additions & 8 deletions main.py

This file was deleted.

0 comments on commit 198223d

Please sign in to comment.