Skip to content

Commit

Permalink
CI: test that tools get installed
Browse files Browse the repository at this point in the history
  • Loading branch information
lonvia committed Sep 18, 2024
1 parent 40a1a9a commit 2cbeaff
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,11 @@ jobs:
run: ./osmium-test/bin/pytest test
shell: bash

- name: Check tool availability
run: |
./osmium-test/bin/pyosmium-get-changes -h
./osmium-test/bin/pyosmium-up-to-date -h
build-platform:
runs-on: ${{ matrix.platform }}

Expand Down Expand Up @@ -204,15 +209,16 @@ jobs:
- name: Install prerequisites
run: |
python -m pip install --upgrade pip
pip install pytest pytest-httpserver shapely setuptools requests
pip install -U pytest pytest-httpserver shapely setuptools requests
shell: bash

- name: Build package
run: python setup.py build
shell: bash

- name: Run tests
run: pytest test
run: |
pytest test
shell: bash


Expand Down Expand Up @@ -360,3 +366,8 @@ jobs:
- name: Run tests
run: ./osmium-test/Scripts/pytest test
shell: bash

- name: Check tool availability
run: |
./osmium-test/Scripts/pyosmium-get-changes -h
./osmium-test/Scripts/pyosmium-up-to-date -h

0 comments on commit 2cbeaff

Please sign in to comment.