diff --git a/.github/workflows/ui_tests.yml b/.github/workflows/ui_tests.yml index eb060a389..554ffed08 100644 --- a/.github/workflows/ui_tests.yml +++ b/.github/workflows/ui_tests.yml @@ -51,4 +51,6 @@ jobs: if-no-files-found: ignore - name: Upload coverage to Codecov - uses: codecov/codecov-action@v3 \ No newline at end of file + uses: codecov/codecov-action@v3 + with: + flags: uitests \ No newline at end of file diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml index f56e49599..381cdd605 100644 --- a/.github/workflows/unit_tests.yml +++ b/.github/workflows/unit_tests.yml @@ -45,3 +45,5 @@ jobs: - name: Upload coverage to Codecov uses: codecov/codecov-action@v3 + with: + flags: unittests diff --git a/codecov.yml b/codecov.yml index f033b78f9..71a3609f6 100644 --- a/codecov.yml +++ b/codecov.yml @@ -9,4 +9,13 @@ coverage: patch: false ignore: - - "ElementX/Source/Generated" # ignore the folder and all its contents \ No newline at end of file + - "ElementX/Source/Generated" # ignore the folder and all its contents + +flag_management: + default_rules: + carryforward: true + statuses: + - name_prefix: project- + type: project + target: auto + threshold: 1% \ No newline at end of file