I am seeing the same issue. Following is my feature file, simple 1 + 1 = 4 failing test to verify tags are working properly with cucumber. Attached screen shots show results. The failed assertion shows in all cases, indicating the tags are not being processed as expected. Please advise.
@example @verify_tags
Feature: Verify serenity tag usage
Verify serenity tags work with cucumber
@ignore
Scenario: Use of @ignore tag
Given a number '1'
And a number '1'
When added together
Then the result is '4'
@ignored
Scenario: Use of @ignored tag
Given a number '1'
And a number '1'
When added together
Then the result is '4'
@pending
Scenario: Use of @pending tag
Given a number '1'
And a number '1'
When added together
Then the result is '4'
@skip
Scenario: Use of @skip tag
Given a number '1'
And a number '1'
When added together
Then the result is '4'
@wip
Scenario: Use of @wip tag
Given a number '1'
And a number '1'
When added together
Then the result is '4'
@manual
Scenario: Use of @manual tag
Given a number '1'
And a number '1'
When added together
Then the result is '4'