We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
If I prepare additional test task:
lazy val LoadTest = config("load") extend(Test)
and configure path for it and apply all settings:
lazy val project = Project("test-project) .configs(LoadTest) .settings(loadTestsSettings: _*) val loadTestsSettings = Seq( scalaSource in LoadTest := baseDirectory.value / "src" / "load" / "scala", resourceDirectory in LoadTest := baseDirectory.value / "src" / "load" / "resources", target in Gatling := baseDirectory.value / "target" / "load-test", libraryDependencies ++= loadTestsDependencies )
Intellij is not marking sources under as baseDirectory.value / "src" / "load" / "scala" as TestSources
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If I prepare additional test task:
and configure path for it and apply all settings:
Intellij is not marking sources under as baseDirectory.value / "src" / "load" / "scala" as TestSources
The text was updated successfully, but these errors were encountered: