ignore doc tests for now to avoid circular deps

This commit is contained in:
yeastplume 2019-02-15 12:10:32 +00:00
parent 802a9aabaa
commit b1a84f1790
No known key found for this signature in database
GPG key ID: AE6E005DF6E76B95
3 changed files with 12 additions and 11 deletions

View file

@ -76,8 +76,8 @@ deploy:
api_key:
secure: PBTFcoUmiQITkDdtFzrBlNR/5OgYHTCw+xVWGYu205xwTlj/ARBgw7DNt8dIdptLx+jOM2V5SbJqSFxs/CJ2ZcOHQZ6ubwpAJlRfuk3xDAi5JmuHYfcY+4SQ9l/0MgHnGfuml093xP7vTIYm2Vwwgdq8fd3jdWmvwgk9zgaGXB4UIXQA0yIs3EzxZpqiLg629Ouv7edMfyffwlG+rgQ1koe6sqeMCxIs0N3p97GCx19kNe0TV4dC7XAN74HreMdHmwxPKAK4xG/jtA1Snm0pMQ50Z0Kizt+0yrGOPMLnWwO9sS38iosBn3Vh1R8HKle2xBGflTtT/LG9lHdQZ5NF572q6681x6t7str4OjJ5bboy1PtNLFxG7RJCVIpp9gbouzdxIaJWRTxIdlk8UNQMrD8ieiNE6V1vZtbHGtJHRSJN1vO/XxsLlQDCyakLhG/nmSKXgiT9wIsu+zj/3oDe+LBt5QetEGYGBrCwUewjaQ7EP1rsT7alQrHTMad5DPjYftJuvfR+yBtz1qbzQwZVJpQC1KY1c476mXPQsaywuUrj56hH92p7P3vl6aMN2OPJZP+zENOVSURHc56KeTsDS55+KKzcRjCMA2L0LR1hP33+V5kavMHgCRrWIkxAkZ4eRqnermalzp8vlzL6EEoGm0VFLzv4mJmzrY1mC1LyCHo=
file_glob: true
file: target/release/grin-*.tgz*
file: target/release/grin-wallet-*.tgz*
skip_cleanup: true
on:
repo: mimblewimble/grin
repo: mimblewimble/grin-wallet
tags: true

View file

@ -86,7 +86,7 @@ where
/// * An instance of the OwnerAPI holding a reference to the provided wallet
///
/// # Example
/// ```
/// ``` ignore
/// # extern crate grin_wallet_config as config;
/// # extern crate grin_refwallet as wallet;
/// # extern crate grin_keychain as keychain;
@ -143,7 +143,7 @@ where
///
/// # Example
/// Set up as in [`new`](struct.APIOwner.html#method.new) method above.
/// ```
/// ``` ignore
/// # extern crate grin_wallet_config as config;
/// # extern crate grin_refwallet as wallet;
/// # extern crate grin_keychain as keychain;
@ -201,7 +201,7 @@ where
///
/// # Example
/// Set up as in [`new`](struct.APIOwner.html#method.new) method above.
/// ```
/// ``` ignore
/// # extern crate grin_wallet as wallet;
/// # extern crate grin_keychain as keychain;
/// # extern crate grin_util as util;
@ -255,7 +255,7 @@ where
///
/// # Example
/// Set up as in [`new`](struct.APIOwner.html#method.new) method above.
/// ```
/// ``` ignore
/// # extern crate grin_wallet as wallet;
/// # extern crate grin_keychain as keychain;
/// # extern crate grin_util as util;
@ -313,7 +313,7 @@ where
///
/// # Example
/// Set up as in [`new`](struct.APIOwner.html#method.new) method above.
/// ```
/// ``` ignore
/// # extern crate grin_wallet as wallet;
/// # extern crate grin_keychain as keychain;
/// # extern crate grin_util as util;
@ -390,7 +390,7 @@ where
///
/// # Example
/// Set up as in [`new`](struct.APIOwner.html#method.new) method above.
/// ```
/// ``` ignore
/// # extern crate grin_wallet as wallet;
/// # extern crate grin_keychain as keychain;
/// # extern crate grin_util as util;
@ -464,7 +464,7 @@ where
///
/// # Example
/// Set up as in [`new`](struct.APIOwner.html#method.new) method above.
/// ```
/// ``` ignore
/// # extern crate grin_wallet as wallet;
/// # extern crate grin_keychain as keychain;
/// # extern crate grin_util as util;
@ -579,7 +579,7 @@ where
///
/// # Example
/// Set up as in [new](struct.APIOwner.html#method.new) method above.
/// ```
/// ``` ignore
/// # extern crate grin_wallet as wallet;
/// # extern crate grin_keychain as keychain;
/// # extern crate grin_util as util;

View file

@ -28,10 +28,11 @@ extern crate grin_store as store;
extern crate grin_util as util;
extern crate grin_libwallet as libwallet;
use failure;
extern crate failure_derive;
#[macro_use]
extern crate log;
pub mod api;
pub use api::{APIForeign, APIOwner};