diff --git a/scripts/tests/coverage.sh b/scripts/tests/coverage.sh index aeed8dbfd..71b59fa16 100755 --- a/scripts/tests/coverage.sh +++ b/scripts/tests/coverage.sh @@ -11,7 +11,7 @@ export LLVM_PROFILE_FILE="cargo-test-%p-%m.profraw" rustflags="-Cinstrument-coverage" test_package_with_feature "primitives" "std" "$rustflags" -no_runtime_benchmarks=('court' 'market-commons' 'rikiddo') +no_runtime_benchmarks=('court' 'market-commons') for package in zrml/*; do if [[ " ${no_runtime_benchmarks[*]} " != *" ${package##*/} "* ]]; then @@ -25,4 +25,4 @@ done unset CARGO_INCREMENTAL LLVM_PROFILE_FILE -grcov . --binary-path ./target/debug/deps/ -s . -t lcov --branch --ignore-not-existing --llvm --ignore '../*' --ignore "/*" -o $RUNNER_TEMP/zeitgeist-test-coverage.lcov \ No newline at end of file +grcov . --binary-path ./target/debug/deps/ -s . -t lcov --branch --ignore-not-existing --llvm --ignore '../*' --ignore "/*" -o $RUNNER_TEMP/zeitgeist-test-coverage.lcov diff --git a/zrml/hybrid-router/Cargo.toml b/zrml/hybrid-router/Cargo.toml index 62d9ac8f9..4791f9697 100644 --- a/zrml/hybrid-router/Cargo.toml +++ b/zrml/hybrid-router/Cargo.toml @@ -71,6 +71,7 @@ runtime-benchmarks = [ "frame-system/runtime-benchmarks", "xcm-builder/runtime-benchmarks", "pallet-xcm/runtime-benchmarks", + "zrml-combinatorial-tokens/runtime-benchmarks", "zrml-prediction-markets/runtime-benchmarks", ] std = [ diff --git a/zrml/neo-swaps/Cargo.toml b/zrml/neo-swaps/Cargo.toml index 95847ed63..fcdae3976 100644 --- a/zrml/neo-swaps/Cargo.toml +++ b/zrml/neo-swaps/Cargo.toml @@ -82,6 +82,7 @@ runtime-benchmarks = [ "frame-system/runtime-benchmarks", "xcm-builder/runtime-benchmarks", "pallet-xcm/runtime-benchmarks", + "zrml-combinatorial-tokens/runtime-benchmarks", ] std = [ "frame-benchmarking?/std",