Skip to content

Commit dae21f7

Browse files
fix: try orb with no plugins
1 parent ff644e1 commit dae21f7

File tree

2 files changed

+2
-14
lines changed

2 files changed

+2
-14
lines changed

.circleci/config.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ jobs:
1414
- run:
1515
name: Run tests and collect coverage
1616
command: pytest --cov app
17-
- codecov/upload
17+
- codecov/upload:
18+
upload_args: --plugin noop
1819

1920
workflow:
2021
version: 2.1

.github/workflows/ci.yml

-13
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,3 @@ jobs:
2222
verbose: true
2323
env:
2424
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
25-
26-
- name: Delete existing coverage report
27-
run: rm coverage.json
28-
29-
- name: Upload coverage to Codecov
30-
uses: codecov/codecov-action@v4
31-
with:
32-
file: fake-file.txt
33-
flags: fake
34-
plugins: noop
35-
verbose: true
36-
env:
37-
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)