Skip to content

Commit c1e566b

Browse files
committed
sync makefile
1 parent a1f55bf commit c1e566b

2 files changed

Lines changed: 7 additions & 8 deletions

File tree

.azurepipelines/MuDevOpsWrapper.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ resources:
1919
type: github
2020
endpoint: microsoft
2121
name: microsoft/mu_devops
22-
# ref: refs/tags/v15.0.3
2322
ref: rust_updates_471
2423

2524
parameters:

Makefile.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ args = ["doc", "@@split(INDIVIDUAL_PACKAGE_TARGETS, )"]
8484
description = "Builds all rust documentation in the workspace and opens the documentation. Example `cargo make doc-open`"
8585
clear = true
8686
command = "cargo"
87-
args = ["doc", "@@split(INDIVIDUAL_PACKAGE_TARGETS, )", "--features", "doc", "--open"]
87+
args = ["doc", "@@split(INDIVIDUAL_PACKAGE_TARGETS, )", "--open"]
8888

8989
[tasks.fmt]
9090
description = "Run cargo format."
@@ -99,12 +99,12 @@ command = "cargo"
9999
args = ["test", "@@split(INDIVIDUAL_PACKAGE_TARGETS, )", "@@split(TEST_FLAGS, )"]
100100
dependencies = ["individual-package-targets"]
101101

102-
# [tasks.coverage]
103-
# description = "Build and run all tests and calculate coverage."
104-
# clear = true
105-
# command = "cargo"
106-
# args = ["tarpaulin", "@@split(INDIVIDUAL_PACKAGE_TARGETS, )", "@@split(COV_FLAGS, )", "--output-dir", "${CARGO_MAKE_WORKSPACE_WORKING_DIRECTORY}/target"]
107-
# dependencies = ["individual-package-targets"]
102+
[tasks.coverage]
103+
description = "Build and run all tests and calculate coverage."
104+
clear = true
105+
command = "cargo"
106+
args = ["tarpaulin", "@@split(INDIVIDUAL_PACKAGE_TARGETS, )", "@@split(COV_FLAGS, )", "--out", "Html", "--out", "Xml", "--output-dir", "${CARGO_MAKE_WORKSPACE_WORKING_DIRECTORY}/target"]
107+
dependencies = ["individual-package-targets"]
108108

109109
[tasks.clippy]
110110
description = "Run cargo clippy."

0 commit comments

Comments
 (0)