-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests(scanner): Move zebra scanner tests to binary (#8659)
* readd the scanner tests in the new binary context * remove commented out tests from zebrad * add Cargo.lock * add local copy of `ZECPAGES_SAPLING_VIEWING_KEY` to binary scanning tests * moves scanner-results-reader to zebra-scan, adds zebrad bin to zebra-scan, adds a short sleep before trying to connect to gRPC server in test * always include zebrad dependency in zebra-scan * renames zebrad bin in zebra-scan to zebrad-for-scanner * skip test when a cached state is missing * remove scanning config from zebrad * move `scan_task_commands` out of zebrad acceptance tests * remove scanner config from zebrad * do not panic if env var is not there * re enable start_scan_where left, remove shielded-scan feature foir scanning tests in CI * change app names * uncomment test * fix the scanner tests in CI by changing the test command * add log needed by CI? * move test * rename trait, docs fix --------- Co-authored-by: Arya <[email protected]>
- Loading branch information
1 parent
f3c2e19
commit 1238ec0
Showing
14 changed files
with
398 additions
and
306 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
//! Main entry point for Zebrad, to be used in zebra-scan tests | ||
|
||
use zebrad::application::{boot, APPLICATION}; | ||
|
||
/// Process entry point for `zebrad` | ||
fn main() { | ||
boot(&APPLICATION); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.