refactor(tvix): move service addrs into shared clap struct
Change-Id: I7cab29ecfa1823c2103b4c47b7d784bc31459d55 Reviewed-on: https://cl.tvl.fyi/c/depot/+/12008 Tested-by: BuildkiteCI Reviewed-by: flokli <flokli@flokli.de> Autosubmit: yuka <yuka@yuka.dev>
This commit is contained in:
parent
6774d9c59c
commit
67335c41b7
12 changed files with 132 additions and 149 deletions
|
|
@ -1,10 +1,11 @@
|
|||
use std::{rc::Rc, sync::Arc};
|
||||
|
||||
use clap::Parser;
|
||||
use pretty_assertions::assert_eq;
|
||||
use std::path::PathBuf;
|
||||
use tvix_build::buildservice::DummyBuildService;
|
||||
use tvix_eval::{EvalIO, Value};
|
||||
use tvix_store::utils::construct_services;
|
||||
use tvix_store::utils::{construct_services, ServiceUrlsMemory};
|
||||
|
||||
use rstest::rstest;
|
||||
|
||||
|
|
@ -35,7 +36,9 @@ fn eval_test(code_path: PathBuf, expect_success: bool) {
|
|||
let tokio_runtime = tokio::runtime::Runtime::new().unwrap();
|
||||
let (blob_service, directory_service, path_info_service, nar_calculation_service) =
|
||||
tokio_runtime
|
||||
.block_on(async { construct_services("memory://", "memory://", "memory://").await })
|
||||
.block_on(async {
|
||||
construct_services(ServiceUrlsMemory::parse_from(std::iter::empty::<&str>())).await
|
||||
})
|
||||
.unwrap();
|
||||
|
||||
let tvix_store_io = Rc::new(TvixStoreIO::new(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue