summaryrefslogtreecommitdiff
path: root/src/bin/minorskulk.rs
diff options
context:
space:
mode:
authorpennae <github@quasiparticle.net>2022-07-14 09:17:16 +0200
committerpennae <github@quasiparticle.net>2022-07-14 09:17:16 +0200
commit062cd0ff0176f1f9924e3ae89c0eaf01a8d6fd04 (patch)
treec9d0409c5ec2aa60edad4ee590b746cb645208e7 /src/bin/minorskulk.rs
parent566d6ccee21fc52943cf1862222f2e9a8927403c (diff)
downloadminor-skulk-062cd0ff0176f1f9924e3ae89c0eaf01a8d6fd04.tar.gz
minor-skulk-062cd0ff0176f1f9924e3ae89c0eaf01a8d6fd04.tar.xz
minor-skulk-062cd0ff0176f1f9924e3ae89c0eaf01a8d6fd04.zip
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`.
Diffstat (limited to 'src/bin/minorskulk.rs')
-rw-r--r--src/bin/minorskulk.rs2
1 files changed, 1 insertions, 1 deletions
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(())
}