tsundberg / gradle-cucumber-runner

A gradle plugin for running Cucumber-JVM
Apache License 2.0
20 stars 10 forks source link

Any way we can support more glues? #6

Open liamli-airwallex opened 3 years ago

liamli-airwallex commented 3 years ago

like glue = ['classpath:se1.thinkcode1', 'classpath:se2.thinkcode2'] @tsundberg

tsundberg commented 3 years ago

Not realy unless it is possible from the command line inteface in Cucumber.

This runner is a wrapper around calling Cucumber from a command line. It doesn't add any functionality on its own.

pete-thompson commented 3 years ago

The command line supports multiple --glue options, similar to the way the --plugin works, so it should be possible to handle multiple glues in a similar way

tsundberg commented 3 years ago

If that is the case, then I assume that this wrraper should as well.

Unfortunately, I am not in a position where I have the time to add it. If someone want to offer a PR where this is sorted, I would be happy to inlude it.