Has integration with rust-analyzer ever been considered? #2253
DavisVaughan
started this conversation in
Feature requests
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Motivation
rust-analyzer has this nice little
Run Tests
button above amod
of tests:It also has
Run Test
above a single test. When switching a project to nextest, most of the timeRun Test
still works, but oftenRun Tests
will start to fail if you start letting your test suite take advantage of one process per test, i.e.Run Tests
will invoke some call tocargo test
and I'm fairly certain it will run those tests in parallel using multiple threads, but your test suite might expect multiple processes rather than multiple threads.Proposal
Have you ever spoken with the rust-analyzer team to see if
Run Tests
could be extensible for other test backends to hook into?Alternatives
No response
Additional context
No response
Beta Was this translation helpful? Give feedback.
All reactions