traced-test 1.0.4

this crate lets us use #[traced_test] to automatically configure sane default tracing for a rust test
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
.PHONY: build default test trybuild

DEFAULT := test

default: $(DEFAULT)

build:
	cargo build

test:
	RUST_BACKTRACE=1 cargo test

trybuild: 
	TRYBUILD=overwrite cargo test --test compile_fail_tests