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
Currently, all tests for the service need cargo run running on another terminal.
We could turn our axum server into a mod we can import and run on the tests themselves within a once cell. This is of course not so easy because tokyo kills it when the first test finishes, but there is probably a solution.
This would both:
make it easier to run the test suite locally as only cargo test is needed
make it faster to run the test suite in the GH workflows as we skip the cargo run build.
The text was updated successfully, but these errors were encountered:
Currently, all tests for the
service
needcargo run
running on another terminal.We could turn our axum server into a mod we can import and run on the tests themselves within a once cell. This is of course not so easy because tokyo kills it when the first test finishes, but there is probably a solution.
This would both:
cargo test
is neededcargo run
build.The text was updated successfully, but these errors were encountered: