duckscript/duckscript_sdk/Makefile.toml
Sagie Gur-Ari 6249efda49
0.1.0 (#1)
initial
2019-12-30 12:45:28 +02:00

25 lines
491 B
TOML

[config]
additional_profiles = [
"none-thread-safe-tests",
"ci-coverage-tasks",
"ci-all-build-tasks",
"publish-pre-cleanup"
]
[tasks.test]
clear = true
run_task = { name = ["test-thread-safe", "test-single-threaded"] }
[tasks.test-thread-safe]
private = true
env = { RUST_TEST_THREADS = { unset = true } }
command = "cargo"
args = ["test"]
[tasks.test-single-threaded]
private = true
env = { RUST_TEST_THREADS = "1" }
command = "cargo"
args = ["test", "--", "--ignored"]