From 1093d51c41d640385b192b5e15c862821a2cdd35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcel=20M=C3=A4rtens?= Date: Thu, 21 Nov 2019 15:25:08 +0100 Subject: [PATCH] tarpaulin fails because it cannot parse Cargo.toml, somehow removing these lines makes tarpaulin run again, so we use it as a workaround/quickfix --- .gitlab-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1303f4f380..81826abd87 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -145,6 +145,8 @@ coverage: tags: - veloren-docker script: + - sed -i '/cargo-features/d' Cargo.toml + - sed -i '/profile.dev.overrides/,+1d' Cargo.toml - cargo tarpaulin -v allow_failure: true