From 53c8876b5eb6a744e8e57acdece58af14a317b90 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Sat, 6 Jun 2020 13:27:59 -0400 Subject: [PATCH] fix codecov test flags --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 14a10a76b..fba6152a2 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -52,7 +52,7 @@ jobs: run: coverage run -m unittest -vv tests.unit.test_conf # run: coverage run -m unittest discover -vv tests.unit - 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: name: "tests / integration" @@ -92,7 +92,7 @@ jobs: tox -e ${{ matrix.test }} ls -la 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: needs: ["lint", "tests-unit", "tests-integration"]