Skip to content

Commit

Permalink
Fix hostname
Browse files Browse the repository at this point in the history
  • Loading branch information
francbartoli committed Mar 3, 2024
1 parent 9a17188 commit 57a075e
Showing 1 changed file with 1 addition and 24 deletions.
25 changes: 1 addition & 24 deletions .github/workflows/contract-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down Expand Up @@ -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"

0 comments on commit 57a075e

Please sign in to comment.