我正在尝试运行一组使用 Serenity-BDD 框架提供的“WithTagValuesOf”注释的特定 junit 测试。
根据 Serenity 教程,我可以为 Maven 找到相同的内容:
mvn clean verify -Dtags="release:sprint-2"
但我正在尝试为 Gradle 找到类似的方法。例如:
gradle clean test --tests -Dtags="Test-Type:Smoke" aggregate
以上给了我以下错误:
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':test'.
> No tests found for given includes: [tags=Test-Type:Smoke]
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
BUILD FAILED
有人可以帮我解决这个问题吗?