Skip to content

Commit

Permalink
Merge pull request #2678 from mickvandijke/fix-run-scratchpad-tests-i…
Browse files Browse the repository at this point in the history
…n-sequence

fix(test): run scratchpad tests in serial
  • Loading branch information
mickvandijke authored Jan 29, 2025
2 parents 937b4d4 + 3ba6164 commit 16271f7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions autonomi/tests/scratchpad.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,11 @@ use autonomi::{
Client,
};
use eyre::Result;
use serial_test::serial;
use test_utils::evm::get_funded_wallet;

#[tokio::test]
#[serial]
async fn scratchpad_put_manual() -> Result<()> {
let _log_appender_guard = LogBuilder::init_single_threaded_tokio_test("scratchpad", false);

Expand Down Expand Up @@ -79,6 +81,7 @@ async fn scratchpad_put_manual() -> Result<()> {
}

#[tokio::test]
#[serial]
async fn scratchpad_put() -> Result<()> {
let _log_appender_guard = LogBuilder::init_single_threaded_tokio_test("scratchpad", false);

Expand Down Expand Up @@ -142,6 +145,7 @@ async fn scratchpad_put() -> Result<()> {
}

#[tokio::test]
#[serial]
async fn scratchpad_errors() -> Result<()> {
let _log_appender_guard = LogBuilder::init_single_threaded_tokio_test("scratchpad", false);

Expand Down

0 comments on commit 16271f7

Please sign in to comment.