Skip to content

Commit

Permalink
ignore doc tests for now to avoid circular deps
Browse files Browse the repository at this point in the history
  • Loading branch information
yeastplume committed Feb 15, 2019
1 parent 802a9aa commit b1a84f1
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
16 changes: 8 additions & 8 deletions apiwallet/src/api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down
3 changes: 2 additions & 1 deletion apiwallet/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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};

0 comments on commit b1a84f1

Please sign in to comment.