From 1d35c5a0b9b0eeea1a3e0749605381d29b304cc4 Mon Sep 17 00:00:00 2001 From: teor Date: Mon, 19 Oct 2020 13:48:09 +1000 Subject: [PATCH] Enable the zebrad sync tests by default If your test environment does not have DNS or network access, set the ZEBRA_SKIP_NETWORK_TESTS environmental variable to disable these tests. --- zebrad/tests/acceptance.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/zebrad/tests/acceptance.rs b/zebrad/tests/acceptance.rs index 03c02139..f940eb66 100644 --- a/zebrad/tests/acceptance.rs +++ b/zebrad/tests/acceptance.rs @@ -460,7 +460,6 @@ fn valid_generated_config(command: &str, expected_output: &str) -> Result<()> { /// If your test environment does not have network access, skip /// this test by setting the `ZEBRA_SKIP_NETWORK_TESTS` env var. #[test] -#[ignore] fn sync_one_checkpoint_mainnet() -> Result<()> { sync_one_checkpoint(Mainnet) } @@ -470,7 +469,6 @@ fn sync_one_checkpoint_mainnet() -> Result<()> { /// If your test environment does not have network access, skip /// this test by setting the `ZEBRA_SKIP_NETWORK_TESTS` env var. #[test] -#[ignore] fn sync_one_checkpoint_testnet() -> Result<()> { sync_one_checkpoint(Testnet) }