Skip to content

Commit bbab0fb

Browse files
committed
iui: progressbar: skip doctest on macos
Because this test runs under Travis CI, this test doesn't actually finish. Disable this test on macos. Signed-off-by: Sean Cross <[email protected]>
1 parent 65f09e0 commit bbab0fb

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

iui/src/controls/progressbar.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ use ui_sys::{self, uiControl, uiProgressBar};
2020
/// # use iui::prelude::*;
2121
/// # use iui::controls::{ProgressBar, ProgressBarValue};
2222
/// # let ui = UI::init().unwrap();
23+
/// # if cfg!(target_os = "macos") { return; }
2324
/// # let mut window = Window::new(&ui, "Test Window", 0, 0, WindowType::NoMenubar);
2425
/// let mut progressbar = ProgressBar::indeterminate(&ui);
2526
/// progressbar.set_value(&ui, 54);

0 commit comments

Comments
 (0)