Feature: Addition tests
@one
Scenario: Add two numbers to pass
Given two numbers to add
When 2 and 3 are added together
Then the sum should be 5
@two
Scenario: Add two numbers to fail
Given two numbers to add
When 2 and 3 are added together
Then the sum should be 6
Выполняется >> поведение --tags = "@ one" (или поведение - теги = один) Дает мне
@one
Scenario: Add two numbers to pass # features/Add.feature:4
Given two numbers to add # features/steps/Maths.py:4 0.000s
When 2 and 3 are added together # features/steps/Maths.py:8 0.000s
Then the sum should be 5 # features/steps/Maths.py:12 0.000s
@two
Scenario: Add two numbers to fail # features/Add.feature:10
Given two numbers to add # None
When 2 and 3 are added together # None
Then the sum should be 6 # None
Как и ожидалось.
Еще выполняется >> behavior --tags = "@ one or @two" Дает мне
@one
Scenario: Add two numbers to pass # features/Add.feature:4
Given two numbers to add # None
When 2 and 3 are added together # None
Then the sum should be 5 # None
@two
Scenario: Add two numbers to fail # features/Add.feature:10
Given two numbers to add # None
When 2 and 3 are added together # None
Then the sum should be 6 # None
Это должно выполнить оба сценария ios, и в соответствии с каждым учебным курсом, похоже, это способ запустить несколько сценариев ios. Я упустил здесь что-то очевидное (и я определенно использую "или" и не веду себя --tags = "@ one and @two")?