cargo-test-filter 0.1.0

A cargo subcommand for intelligent test filtering and compilation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Another integration test file

// @tag: integration
// @tag: fast
#[test]
fn test_fast_api_call() {
    assert!(true);
}

// @tag: integration
#[test]
fn test_authentication() {
    assert_eq!(1 + 1, 2);
}