question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

allow for running features NOT tagged with @tag

See original GitHub issue

Having a look at radish -h and browsing the sources of this repo, I found no way to express "run all features _NOT_ tagged with @SomeTag".

For example we would like to use: radish *.feature --feature-tags Foo,Bar,-Baz for running all features tagged with either “Foo” or “Bar”, but not the ones tagged with “Baz”

Is that possible by now?

Issue Analytics

  • State:closed
  • Created 8 years ago
  • Comments:7 (5 by maintainers)

github_iconTop GitHub Comments

1reaction
BooleanCatcommented, Feb 19, 2017

Not currently but it’s on my to do list - so likely soon! @timofurrer

0reactions
timofurrercommented, Feb 25, 2017

I’ve implemented this feature with #42

I went with a tag expression syntax. So you are able to do things like this:

radish test.feature --feature-tags 'regression'
radish test.feature --scenario-tags 'good_case and in_progress'
radish test.feature --scenario-tags 'good_case' --feature-tags 'regression'
radish test.feature --feature-tags 'regression and good_case and not real_hardware'
radish test.feature --feature-tags 'database or filesystem and bad_case'

Note: also see the documentation update.

Read more comments on GitHub >

github_iconTop Results From Across the Web

How to prevent Cucumber feature files from running when ...
Cucumber should run only the features that are tagged @Regression. It won't run the ones which are either tagged differently or not tagged ......
Read more >
Cucumber Tags - Tools QA
How to run Cucumber Tests in Groups with Cucumber Tags; How to ignore Cucumber Tests; Logically ANDing and ORing Tags. What are Cucumber...
Read more >
Tagging is not rightly applied, when I have multiple tags on my ...
ISSUE: So when I am running my individual runners, the tagging is not correctly applied. I have tried all sorts of combinations but...
Read more >
Tag transactions in QuickBooks Online
Go to Settings ⚙️ and select Tags. Find the tag or tag group you want to edit. Under the Action column, select the...
Read more >
How To Tag And Run End-to-End Tests - Gleb Bahmutov
Our new workflow tagged only runs when there is GREP_TAGS string and an empty default string "" does not count. Let's trigger the...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found