-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Runner file #3
Comments
@grandmaximum can you please have a look at #4 which was released with #5. It may help you to set custom glue, features and tags via @CucumberOptions. let me know if this works for you |
@christophd It seems like the tag feature isn't really working. Whether or not I use tags and define them in the runner file, all the tests in the specified .feature-file is still run. EDIT: A bit ironic that this was the broken link in my last post. |
@grandmaximum let me check. how do you define the tags in the runner file? |
@grandmaximum thanks for reporting! Fixed the tag filtering support in #8 |
@stuartwdouglas When are you planning on 0.4.0? Would be awesome if I could test the tag filtering. |
Here you go: #9 Might take a bit to get into central. |
I ran into the same problem as mentioned in quarkusio/quarkus#10435. When I run a steps method which uses a Restassured call I get the following error:
The problem occures on the first class being loaded by RestAssures classloader. Is there a possible way around this or is RestAssured simply imcompatible with dynamic tests (@testfactory) and thus quarkus-cucumber? My RestAssured call:
|
@grandmaximum the issue regarding RestAssured seems to be different. Could you please open a separate issue for this? About to close the initial issue regarding |
Hi, I try extension but i don't have any result. I have an app Quarkus. I did like here : https://github.com/quarkiverse/quarkus-cucumber/blob/main/docs/modules/ROOT/pages/index.adoc so, i have a runner file : `package test.it.runner; import io.cucumber.junit.Cucumber; import org.junit.runner.RunWith; @RunWith(Cucumber.class) public class RunnerCucumberIT extends CucumberQuarkusTest { My test file for bdd - cucumber test is methods empty so, I wait errors about that but nothig is comming. Is there any other documentation that I can follow ? Thanks you :) |
@bella-daza could you please open separate issue. Your problem seems to not be related to this one. |
I don't have the option to perform a pull request (company restriction), so I write here instead.
I added so the user have the option to define Steps and Feature files from a "runner file":
And then implemented some setters:
in order for my "runner" class to look like this:
I used the logics applied by @drubio-tlnd in https://github.com/quarkusio/quarkus/issues/11045#issuecomment-769663017, which works if only one tag is used, but fails when there are many tags. Any idea why?
The text was updated successfully, but these errors were encountered: