add behave to CI

HEAD^2
Sarah Hoffmann 2022-04-25 10:16:05 +02:00
parent 7962f9f722
commit c8cbc979b5
3 changed files with 5 additions and 3 deletions

View File

@ -26,7 +26,9 @@ runs:
postgresql-${POSTGRESQL_VERSION}-postgis-${POSTGIS_VERSION}-scripts \
postgresql-client postgresql-contrib-${POSTGRESQL_VERSION} \
python3-psycopg2 \
python3-setuptools \
zlib1g-dev
pip3 install behave
if [ "$CC" = clang-8 ]; then sudo apt-get install -yq --no-install-suggests --no-install-recommends clang-8; fi
shell: bash

View File

@ -6,6 +6,6 @@ runs:
- name: Install packages
run: vcpkg install bzip2:x64-windows expat:x64-windows zlib:x64-windows proj4:x64-windows boost-system:x64-windows boost-filesystem:x64-windows boost-property-tree:x64-windows lua:x64-windows libpq:x64-windows
shell: bash
- name: Install psycopg2
run: python -m pip install psycopg2
- name: Install psycopg2 and beahve
run: python -m pip install psycopg2 behave
shell: bash

View File

@ -13,7 +13,7 @@ jobs:
- name: Install prerequisites
run: |
brew install lua boost postgis pandoc
pip3 install psycopg2
pip3 install psycopg2 behave
pg_ctl -D /usr/local/var/postgres start
shell: bash