Skip to content

Commit

Permalink
skip all sync tests
Browse files Browse the repository at this point in the history
  • Loading branch information
conradludgate committed Sep 26, 2023
1 parent 3e50da2 commit 3cf6a61
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion atuin.nix
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ rustPlatform.buildRustPackage {

# Additional flags passed to the cargo test binary, see `cargo test -- --help`
checkFlags = [
# Registration tests require a postgres server
# Sync tests require a postgres server
"--skip=sync"
"--skip=registration"
];

Expand Down
2 changes: 1 addition & 1 deletion atuin/tests/sync.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ async fn start_server(path: &str) -> (String, oneshot::Sender<()>, JoinHandle<()

let dispatch: Dispatch = tracing_subscriber::registry()
.with(formatting_layer)
.with(EnvFilter::new("atuin_server=debug,info"))
.with(EnvFilter::new("atuin_server=debug,atuin_client=debug,info"))
.into();

let db_uri = env::var("ATUIN_DB_URI")
Expand Down

0 comments on commit 3cf6a61

Please sign in to comment.