I want to skip the BDD-Gherkin scenarios form feature files. Below is one scenario I have tried with @skip and @ignore /@incomplete (Just tried, I am not sure whether this is the correct way or not. I used to try them like this in cucumber BDD) but found that they are still running and the tags I used are not working.
Feature: test.feature
@Skip @incomplete @ignore
Scenario: Regular user login
Given I am on "/landing_page"
When I login with "valid_user"
Then I see element "#logo"
Need a way to skip tests in feature files. I am not using any cests or cepts in my project. I'm completely relaying on BDD feature files.
Those tags can only assign test to the group. So marking them as @skip doesnt make a trick. However, you can executive tests without that group:
codecept run --skip-group skip
Thank you @DavertMik ... closing the ticket
Most helpful comment
Those tags can only assign test to the group. So marking them as @skip doesnt make a trick. However, you can executive tests without that group:
codecept run --skip-group skip