Skip to content

Commit c91e830

Browse files
committed
fix(ci): move -E filter before -- in cargo llvm-cov nextest
1 parent 6155af8 commit c91e830

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ jobs:
107107
- name: Run tests with coverage
108108
if: github.ref == format('refs/heads/{0}', github.event.repository.default_branch)
109109
run: |
110-
cargo llvm-cov nextest --workspace --json --output-path coverage.json -- -E 'not (test(/live/) | test(/integration/))'
110+
cargo llvm-cov nextest --workspace --json --output-path coverage.json -E 'not (test(/live/) | test(/integration/))'
111111
112112
- name: Generate coverage badge
113113
if: github.ref == format('refs/heads/{0}', github.event.repository.default_branch)

0 commit comments

Comments
 (0)