From 496a3d29db0edcc7f2ed5bd279aba1da53f24d3c Mon Sep 17 00:00:00 2001 From: Sarah Hoffmann Date: Fri, 15 Jan 2021 15:22:21 +0100 Subject: [PATCH] enable pytest testing in CI --- .github/workflows/ci-tests.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml index 212707b3..99b75f17 100644 --- a/.github/workflows/ci-tests.yml +++ b/.github/workflows/ci-tests.yml @@ -46,21 +46,21 @@ jobs: - uses: ./.github/actions/build-nominatim - name: Install test prerequsites - run: | - sudo apt-get install -y -qq php-codesniffer pylint - sudo pip3 install behave + run: sudo apt-get install -y -qq php-codesniffer pylint python3-pytest python3-behave - name: PHP linting run: phpcs --report-width=120 . - name: Python linting - run: | - pylint nominatim + run: pylint nominatim - name: PHP unit tests run: phpunit ./ working-directory: test/php + - name: Python unit tests + run: pytest test/python + - name: BDD tests run: behave -DREMOVE_TEMPLATE=1 --format=progress3 working-directory: test/bdd -- 2.45.1