From 062cd0ff0176f1f9924e3ae89c0eaf01a8d6fd04 Mon Sep 17 00:00:00 2001 From: pennae Date: Thu, 14 Jul 2022 09:17:16 +0200 Subject: allow integration tests to run in parallel this doesn't do much for performance, but it does allow running the tests with a simple `cargo t`. --- src/bin/minorskulk.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/bin/minorskulk.rs') diff --git a/src/bin/minorskulk.rs b/src/bin/minorskulk.rs index 1609edb..21665a9 100644 --- a/src/bin/minorskulk.rs +++ b/src/bin/minorskulk.rs @@ -4,6 +4,6 @@ use minor_skulk::build; async fn main() -> anyhow::Result<()> { dotenv::dotenv().ok(); - let _ = build().await?.launch().await?; + let _ = build(rocket::build()).await?.launch().await?; Ok(()) } -- cgit v1.2.3