]> git.openstreetmap.org Git - nominatim.git/commitdiff
enable pytest testing in CI
authorSarah Hoffmann <lonvia@denofr.de>
Fri, 15 Jan 2021 14:22:21 +0000 (15:22 +0100)
committerSarah Hoffmann <lonvia@denofr.de>
Fri, 15 Jan 2021 14:33:53 +0000 (15:33 +0100)
.github/workflows/ci-tests.yml

index 212707b32b4bdfa48668796199e36031e2283301..99b75f1702b57eff05a3432b592a93ed9383513b 100644 (file)
@@ -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