Skip to content
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

cucumber task configuration appears to be global rather than per-project? #60

Open
dnwe opened this issue May 26, 2016 · 0 comments
Open

Comments

@dnwe
Copy link

dnwe commented May 26, 2016

in a multi-project build.gradle
i.e.,

project(':projectA') {
  cucumber {
    tags = ['@billing', '@important']
  }
}

project(':projectB') {
  cucumber {
    tags = ['@logging']
  }
}

the gradle-cucumber-plugin appears to treat the cucumber { ... } task configuration as global and so the second block overrides the first and any configuration (e.g., the @logging tag in this case) is applied to the CLI argument for both projects

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants