mirror of
https://github.com/mimblewimble/grin-wallet.git
synced 2025-02-01 08:51:09 +03:00
Don't run doctests on Windows CI (#416)
* don't run doctests on windows CI * CI Testing
This commit is contained in:
parent
2769436117
commit
586a72d2ed
2 changed files with 10 additions and 0 deletions
|
@ -420,6 +420,11 @@ macro_rules! doctest_helper_setup_doc_env_foreign {
|
||||||
use impls::{DefaultLCProvider, DefaultWalletImpl, HTTPNodeClient};
|
use impls::{DefaultLCProvider, DefaultWalletImpl, HTTPNodeClient};
|
||||||
use libwallet::{BlockFees, IssueInvoiceTxArgs, Slate, WalletInst};
|
use libwallet::{BlockFees, IssueInvoiceTxArgs, Slate, WalletInst};
|
||||||
|
|
||||||
|
// don't run on windows CI, which gives very inconsistent results
|
||||||
|
if cfg!(windows) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
let dir = tempdir().map_err(|e| format!("{:#?}", e)).unwrap();
|
let dir = tempdir().map_err(|e| format!("{:#?}", e)).unwrap();
|
||||||
let dir = dir
|
let dir = dir
|
||||||
.path()
|
.path()
|
||||||
|
|
|
@ -2126,6 +2126,11 @@ macro_rules! doctest_helper_setup_doc_env {
|
||||||
|
|
||||||
use uuid::Uuid;
|
use uuid::Uuid;
|
||||||
|
|
||||||
|
// don't run on windows CI, which gives very inconsistent results
|
||||||
|
if cfg!(windows) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
let dir = tempdir().map_err(|e| format!("{:#?}", e)).unwrap();
|
let dir = tempdir().map_err(|e| format!("{:#?}", e)).unwrap();
|
||||||
let dir = dir
|
let dir = dir
|
||||||
.path()
|
.path()
|
||||||
|
|
Loading…
Reference in a new issue