[fix] Prevent HTTP 500 on missing device credentials #995
Workflow file for this run
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: OpenWISP Firmware Upgrader CI Build | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - "1.2" | |
| pull_request: | |
| branches: | |
| - master | |
| - "1.2" | |
| jobs: | |
| build: | |
| name: Python==${{ matrix.python-version }} | ${{ matrix.django-version }} | |
| runs-on: ubuntu-24.04 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: | |
| - "3.10" | |
| - "3.11" | |
| - "3.12" | |
| - "3.13" | |
| django-version: | |
| - django~=4.2.0 | |
| - django~=5.1.0 | |
| - django~=5.2.0 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| cache: "pip" | |
| cache-dependency-path: | | |
| **/requirements*.txt | |
| - name: Cache APT packages | |
| uses: actions/cache@v5 | |
| with: | |
| path: /var/cache/apt/archives | |
| key: apt-${{ runner.os }}-${{ hashFiles('.github/workflows/ci.yml') }} | |
| restore-keys: | | |
| apt-${{ runner.os }}- | |
| - name: Disable man page auto-update | |
| run: | | |
| echo 'set man-db/auto-update false' | sudo debconf-communicate >/dev/null | |
| sudo dpkg-reconfigure man-db | |
| - name: Install Dependencies | |
| id: deps | |
| run: | | |
| sudo apt update | |
| sudo apt -qq install \ | |
| sqlite3 \ | |
| gdal-bin \ | |
| libproj-dev \ | |
| libgeos-dev \ | |
| libspatialite-dev \ | |
| spatialite-bin \ | |
| libsqlite3-mod-spatialite | |
| pip install -U pip wheel setuptools | |
| pip install -U -r requirements-test.txt | |
| pip install -U -e . | |
| pip install -U ${{ matrix.django-version }} | |
| sudo npm install -g prettier | |
| - name: Start redis | |
| if: ${{ !cancelled() && steps.deps.conclusion == 'success' }} | |
| run: docker compose up -d redis | |
| - name: QA checks | |
| run: | | |
| ./run-qa-checks | |
| - name: Tests | |
| if: ${{ !cancelled() && steps.deps.conclusion == 'success' }} | |
| run: ./runtests | |
| env: | |
| SELENIUM_HEADLESS: 1 | |
| - name: Upload Coverage | |
| if: ${{ success() }} | |
| uses: coverallsapp/github-action@v2 | |
| with: | |
| parallel: true | |
| format: cobertura | |
| flag-name: python-${{ matrix.env.env }} | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| fail-on-error: false | |
| coveralls: | |
| needs: build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Coveralls Finished | |
| uses: coverallsapp/github-action@v2 | |
| with: | |
| parallel-finished: true | |
| fail-on-error: false |