Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2022-05-12 18:32:04 +0300
committerSebastian Dröge <sebastian@centricular.com>2022-05-12 18:32:04 +0300
commitb9bc331ebce4506b226c15f82cd89597ad407c12 (patch)
treef0682b3bfb4de04f65cd876a65219b30cb69ca6b /.gitlab-ci.yml
parent50980a0b3e380b91cf77ce18bf2687cd56ff790f (diff)
ci: Generate coverage report also for crates with external dependencies
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index e8d69f8ed..0d02e1e3f 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -266,7 +266,7 @@ coverage:
# csound-sys only looks at /usr/lib and /usr/local top levels
CSOUND_LIB_DIR: '/usr/lib/x86_64-linux-gnu/'
script:
- - cargo test --locked --color=always --all-features
+ - cargo test --locked --color=always --all --all-features
# generate html report
- grcov . --binary-path ./target/debug/ -s . -t html --branch --ignore-not-existing --ignore "*target*" --ignore "*/build.rs" -o ./coverage/
# generate cobertura report for gitlab integration