fix codecov test flags

This commit is contained in:
Lex Berezhny 2020-06-06 13:27:59 -04:00
parent 2927875830
commit 53c8876b5e

View file

@ -52,7 +52,7 @@ jobs:
run: coverage run -m unittest -vv tests.unit.test_conf run: coverage run -m unittest -vv tests.unit.test_conf
# run: coverage run -m unittest discover -vv tests.unit # run: coverage run -m unittest discover -vv tests.unit
- if: startsWith(runner.os, 'linux') || startsWith(runner.os, 'mac') - if: startsWith(runner.os, 'linux') || startsWith(runner.os, 'mac')
run: bash <(curl -s https://codecov.io/bash) -X gcov -F unit-${{ matrix.os }} run: bash <(curl -s https://codecov.io/bash) -X gcov -F unit,${{ matrix.os }}
tests-integration: tests-integration:
name: "tests / integration" name: "tests / integration"
@ -92,7 +92,7 @@ jobs:
tox -e ${{ matrix.test }} tox -e ${{ matrix.test }}
ls -la ls -la
ls -la tests ls -la tests
bash <(curl -s https://codecov.io/bash) -X gcov -F integration-${{ matrix.test }}-${{ matrix.db }} bash <(curl -s https://codecov.io/bash) -X gcov -F integration,${{ matrix.test }},${{ matrix.db }}
build: build:
needs: ["lint", "tests-unit", "tests-integration"] needs: ["lint", "tests-unit", "tests-integration"]