I have 10 feature files out of which I want to exclude api.feature and integration.feature . How do I do it using behave?
behave --tags @test --no-capture --show-timings -e (int|u)
behave --tags @test --no-capture --show-timings -e api.feature -e integration.feature
None of the above 2 options work.