Merge pull request #545 from MerginMaps/bump_ce_version #1623
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Auto Tests | |
| on: push | |
| jobs: | |
| server_tests: | |
| runs-on: ubuntu-22.04 | |
| services: | |
| postgres: | |
| image: postgres:14 | |
| env: | |
| POSTGRES_DB: postgres | |
| POSTGRES_PASSWORD: postgres | |
| POSTGRES_USER: postgres | |
| ports: | |
| - 5435:5432 | |
| # Set health checks to wait until postgres has started | |
| options: >- | |
| --health-cmd pg_isready | |
| --health-interval 10s | |
| --health-timeout 5s | |
| --health-retries 5 | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v3 | |
| - name: Install deps | |
| run: | | |
| cd server | |
| sudo apt-get -y install libsqlite3-mod-spatialite | |
| pip3 install pipenv==2024.0.1 | |
| pipenv install --dev --verbose | |
| - name: Run tests | |
| run: | | |
| cd server | |
| pipenv run pytest -v --cov=mergin --cov-report=lcov mergin/tests | |
| - name: Coveralls | |
| uses: coverallsapp/github-action@v2 | |
| with: | |
| base-path: server | |
| format: lcov |