Skip to content

Commit

Permalink
Debug
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanielsimard committed May 2, 2024
1 parent ef3215e commit 10d4800
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions xtask/src/runchecks.rs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ fn cargo_test(params: Params) {
// Run cargo test
run_cargo(
"test",
params + "--color=always" + "--" + "--color=always",
params + "--color=always" + "--verbose" + "--" + "--color=always",
HashMap::new(),
"Failed to run cargo test",
);
Expand Down Expand Up @@ -305,24 +305,24 @@ fn std_checks() {
let disable_wgpu = std::env::var("DISABLE_WGPU").is_ok();

// Check format
cargo_fmt();
// cargo_fmt();

// Check clippy lints
cargo_clippy();
// cargo_clippy();

// Produce documentation for each workspace member
group!("Docs: crates");
let mut params = Params::from(["--workspace", "--no-deps"]);
// Exclude burn-cuda on all platforms
params.params.push("--exclude".to_string());
params.params.push("burn-cuda".to_string());
cargo_doc(params);
endgroup!();
// group!("Docs: crates");
// let mut params = Params::from(["--workspace", "--no-deps"]);
// // Exclude burn-cuda on all platforms
// params.params.push("--exclude".to_string());
// params.params.push("burn-cuda".to_string());
// cargo_doc(params);
// endgroup!();

// Setup code coverage
if is_coverage {
setup_coverage();
}
// if is_coverage {
// setup_coverage();
// }

// Build & test each member in workspace
let members = get_workspace_members(WorkspaceMemberType::Crate);
Expand Down

0 comments on commit 10d4800

Please sign in to comment.