Sonar coverage test run only for Python 3.9 (#8151)

This commit is contained in:
Nahuel 2022-10-14 17:39:29 +02:00 committed by GitHub
parent bd78ae28ac
commit 37f06034dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -72,7 +72,14 @@ jobs:
run: ./docker/run_local_docker.sh -m no-ui
timeout-minutes: 30
- name: Run Python Tests
if: ${{ matrix.py-version != '3.9' }}
run: |
source env/bin/activate
make run_python_tests
- name: Run Python Tests & record coverage
if: ${{ matrix.py-version == '3.9' }}
run: |
source env/bin/activate
make coverage