You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If a project has 2 modules like:
module
module-test
Then SBT/Metals would have the following build targets:
module - build target for /module submodule
module-test - build target for /module/src/test source set
module-test - build target for /module-test submodule
module-test-test - build target for /module-test/src/test source set
Since there're 2 module-test build targets the command the following line might get the information about the wrong build target:
local metals_uri = string.format("metalsDecode:file://%s/%s.metals-buildtarget", path, project)
If metals returns the build target of module-test submodule and the tested file is located under module/src/test, the plugin would fail to confirm the source path and the test would not be executed
The text was updated successfully, but these errors were encountered:
If a project has 2 modules like:
module
module-test
Then SBT/Metals would have the following build targets:
Since there're 2 module-test build targets the command the following line might get the information about the wrong build target:
If metals returns the build target of module-test submodule and the tested file is located under
module/src/test
, the plugin would fail to confirm the source path and the test would not be executedThe text was updated successfully, but these errors were encountered: