Skip to content

Commit

Permalink
chore: Change frameworks not supported message to warn
Browse files Browse the repository at this point in the history
Previously, we would show an error whenever a native project was loaded, since we can't currently run tests for native. However, this will pop up currently in Metals as a server error, while it's more of a warning. There is nothing the user can do about it. Now, we report this as a warning.
  • Loading branch information
tgodzik committed Sep 13, 2023
1 parent 72a858a commit 0556ce9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/main/scala/bloop/engine/tasks/TestTask.scala
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ object TestTask {
}

case _: Platform.Native =>
logger.error("Detecting test frameworks in Scala Native projects is not yet supported")
logger.warn("Detecting test frameworks in Scala Native projects is not yet supported")
Task.now(None)
}
}
Expand Down

0 comments on commit 0556ce9

Please sign in to comment.