Skip to content

Commit

Permalink
Fix attempt
Browse files Browse the repository at this point in the history
  • Loading branch information
Dinonard committed Jan 17, 2025
1 parent cd662db commit 71ab8da
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 6 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,17 @@ jobs:
- name: Install deps
run: sudo apt -y install protobuf-compiler

- name: Install Tarpaulin v0.31.4 and Generate Report
- name: Install Tarpaulin
run: |
curl -L -o tarpaulin.tar.gz https://github.com/xd009642/tarpaulin/releases/download/0.31.4/cargo-tarpaulin-x86_64-unknown-linux-gnu.tar.gz && \
tar -xvzf tarpaulin.tar.gz && \
chmod +x cargo-tarpaulin && \
sudo mv cargo-tarpaulin /usr/local/bin/ && \
cargo tarpaulin --workspace --features try-runtime,runtime-benchmarks --exclude astar-collator --exclude xcm-tools --exclude local-runtime --exclude shibuya-runtime --exclude shiden-runtime --exclude astar-runtime integration-tests --exclude-files vendor/* --exclude-files bin/* --exclude-files runtime/* --exclude-files tests/* --exclude-files **/mock.rs --exclude-files **/weights.rs --out Xml
curl -L -o tarpaulin.tar.gz https://github.com/xd009642/tarpaulin/releases/download/0.31.4/cargo-tarpaulin-x86_64-unknown-linux-gnu.tar.gz
tar -xvzf tarpaulin.tar.gz
chmod +x cargo-tarpaulin
sudo mv cargo-tarpaulin $HOME/.cargo/bin
cargo tarpaulin --version
- name: Run Tarpaulin
run: |
cargo tarpaulin --features try-runtime,runtime-benchmarks \
- name: Code Coverage Summary Report
uses: irongut/[email protected]
Expand Down
13 changes: 13 additions & 0 deletions tarpaulin.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[default-astar]

name = "default-astar"
manifest-path = "./Cargo.toml"

workspace = true
out = ["Xml"]

# List of packages to exclude from testing.
exclude = ["astar-collator", "xcm-tools", "local-runtime", "shibuya-runtime", "shiden-runtime", "astar-runtime", "integration-tests"]

# List of file paths to exclude from testing.
exclude-files = ["vendor/*", "bin/*", "runtime/*", "tests/*", "**/mock.rs", "**/weights.rs"]

0 comments on commit 71ab8da

Please sign in to comment.