cargo-test-filter 0.1.1

A cargo subcommand for intelligent test filtering and compilation
Documentation
// Integration test example with tags

// @tag: integration
// @tag: database
#[test]
fn test_database_connection() {
    // Simulate database connection test
    assert!(true);
}

// @tag: integration
// @tag: api
#[test]
fn test_api_endpoint() {
    // Simulate API test
    assert_eq!(2 + 2, 4);
}

// @tag: integration
// @tag: slow
#[test]
fn test_slow_integration() {
    // Simulate a slow test
    assert!(true);
}