Skip to content

Commit

Permalink
[ci] Run tests even on QA fails
Browse files Browse the repository at this point in the history
  • Loading branch information
Dhanus3133 committed Jul 23, 2024
1 parent 7ea0376 commit 417ff0a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,27 +61,27 @@ jobs:
- name: Start InfluxDB and Redis container
run: docker-compose up -d influxdb redis

- name: Install test dependencies
- name: Install Dependencies
id: deps
run: |
pip install -U -r requirements-test.txt
pip install --force-reinstall https://github.com/openwisp/openwisp-controller/tarball/master
- name: Install openwisp-network-topology
run: |
pip install -U -e .
pip install ${{ matrix.django-version }}
- name: QA checks
run: ./run-qa-checks

- name: Tests
if: ${{ !cancelled() && steps.deps.conclusion == 'success' }}
run: |
coverage run runtests.py --parallel
WIFI_MESH=1 coverage run runtests.py
coverage combine
SAMPLE_APP=1 ./runtests.py --parallel --keepdb
- name: Upload Coverage
if: ${{ success() }}
run: coveralls --service=github
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 417ff0a

Please sign in to comment.