1 2 3 4 5 6 7 8 9 10 11
.PHONY : all test_env test_lib all : test_env test_lib test_env : @cd test_app && cargo update && cargo test && cd ..; test_lib : echo "A=B\nC=D" > .env; cargo test; rm .env;