-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9a17188
commit 57a075e
Showing
1 changed file
with
1 addition
and
24 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,17 +8,6 @@ jobs: | |
contract-tests: | ||
name: Validate and test the contract of fastgeoapi against the generated pygeoapi OpenAPI document | ||
runs-on: ubuntu-latest | ||
# strategy: | ||
# fail-fast: false | ||
# matrix: | ||
# include: | ||
# - { python: "3.10", os: "ubuntu-20.04", session: "contractests" } | ||
# - { python: "3.9", os: "ubuntu-20.04", session: "contractests" } | ||
|
||
# env: | ||
# NOXSESSION: ${{ matrix.session }} | ||
# FORCE_COLOR: "1" | ||
|
||
steps: | ||
- name: Check out the repository | ||
uses: actions/[email protected] | ||
|
@@ -46,25 +35,13 @@ jobs: | |
run: | | ||
pipx install --pip-args=--constraint=.github/workflows/constraints.txt poetry | ||
poetry --version | ||
# - name: Install Nox | ||
# run: | | ||
# pipx install --pip-args=--constraint=.github/workflows/constraints.txt nox | ||
# pipx inject --pip-args=--constraint=.github/workflows/constraints.txt nox nox-poetry | ||
# nox --version | ||
|
||
- name: Install GDAL | ||
run: | | ||
sudo apt-add-repository ppa:ubuntugis/ubuntugis-unstable | ||
sudo apt-get update | ||
sudo apt-get install gdal-bin libgdal-dev | ||
# - name: Run Nox | ||
# run: | | ||
# nox --force-color --python=${{ matrix.python }} | ||
|
||
- name: Install fastgeoapi and run schemathesis tests | ||
run: | | ||
poetry install | ||
poetry run uvicorn app.main:app --host 0.0.0.0 --port 6000 --reload --loop asyncio & | ||
poetry run st run --checks all "http://localhost:6000/openapi?f=json" | ||
poetry run st run --checks all "http://0.0.0.0:6000/openapi?f=json" |