[config]
skip_core_tasks = true
reduce_output = true
[tasks.default]
command = "cargo"
args = ["make", "--list-all-steps"]
[tasks.fmt]
install_crate = "rustfmt"
command = "cargo"
args = ["fmt"]
[tasks.lint]
install_crate = "clippy"
command = "cargo"
args = ["clippy"]
[tasks.test]
command = "cargo"
args = ["test"]
[tasks.testlarge]
env = { MOSOX_TEST_LARGE = "1" }
command = "cargo"
args = ["test", "--release", "--test", "regression_test"]
[tasks.bench]
command = "cargo"
args = ["test", "--release", "--test", "bench_perf", "--", "--ignored", "--nocapture"]
[tasks.benchlarge]
env = { MOSOX_TEST_LARGE = "1" }
command = "cargo"
args = ["test", "--release", "--test", "bench_perf", "--", "--ignored", "--nocapture"]
[tasks.benchglpsol]
env = { MOSOX_TEST_LARGE = "1", MOSOX_BENCH_GLPSOL = "1" }
command = "cargo"
args = ["test", "--release", "--test", "bench_perf", "--", "--ignored", "--nocapture"]
[tasks.ci]
dependencies = [
"fmt",
"lint",
"test"
]
[tasks.clean]
command = "cargo"
args = ["clean"]
[tasks.build]
command = "cargo"
args = ["build"]
dependencies = ["clean"]
[tasks.test-cov]
env = { RUSTFLAGS = "-Cinstrument-coverage", LLVM_PROFILE_FILE = "target/prof/cargo-test-%p-%m.profraw" }
command = "cargo"
args = ["test"]
[tasks.gen-cov]
dependencies = ["test-cov"]
command = "grcov"
args = [".", "--source-dir=.", "--binary-path=target/debug", "--output-types=html", "--branch", "--output-path=target/coverage"]
[tasks.cov]
dependencies = ["gen-cov"]
command = "open"
args = ["target/coverage/index.html"]