Skip to content

Commit b36c455

Browse files
test: try flag names with dashes
1 parent 57df161 commit b36c455

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

.circleci/config.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@ jobs:
1515
name: Run tests and collect coverage
1616
command: pytest --cov app
1717
- codecov/upload
18-
18+
- codecov/upload:
19+
flags: testthree
20+
- codecov/upload:
21+
flags: test-four
1922
workflow:
2023
version: 2.1
2124
build-test:

.github/workflows/ci.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,17 @@ jobs:
4040
fail_ci_if_error: true
4141
use_oidc: true
4242
verbose: true
43+
- name: Upload coverage to Codecov (oidc)
44+
uses: codecov/codecov-action@main
45+
with:
46+
fail_ci_if_error: true
47+
use_oidc: true
48+
flags: testone
49+
verbose: true
50+
- name: Upload coverage to Codecov (oidc)
51+
uses: codecov/codecov-action@main
52+
with:
53+
fail_ci_if_error: true
54+
use_oidc: true
55+
flags: test-two
56+
verbose: true

0 commit comments

Comments
 (0)