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
{ "java.test.config": [ { "name": "Unit Tests", "workingDirectory": "${workspaceFolder}", "args": [ "--include-classname", ".*Test", ], }, { "name": "Integration Tests", "workingDirectory": "${workspaceFolder}", "args": [ "--include-classname", ".*IT", ], } ], "java.test.defaultConfig": "Unit Tests" }
The "Run all tests" command starts all tests including integration tests
The "Run all tests" command starts only unit tests
The text was updated successfully, but these errors were encountered:
Thanks @yacut, we can only run test folders which are marked as test by the build tools (which are persisted in .classpath)
.classpath
This issue is the same as #464.
Sorry, something went wrong.
No branches or pull requests
Workspace settings:
Actual behaviour
The "Run all tests" command starts all tests including integration tests
Expected behaviour
The "Run all tests" command starts only unit tests
The text was updated successfully, but these errors were encountered: