Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Per test timeout #71

Merged
merged 9 commits into from
Aug 4, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Try no timeout
Signed-off-by: Heinz N. Gies <heinz@licenser.net>
  • Loading branch information
Licenser committed Aug 4, 2022
commit e01c8db7ca48e65d134d73d907c4ee40fd2fad65
5 changes: 3 additions & 2 deletions serial_test_test/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,11 +107,12 @@ mod tests {
use serial_test::{file_parallel, file_serial};

#[test]
#[serial(timeout_key, timeout_ms = 60000)]
#[serial()]
fn demo_timeout_with_key() {}

#[test]
#[serial(timeout_ms = 60000)]
#[serial()]
// #[serial(timeout_ms = 60000)]
fn demo_timeout() {}

#[test]
Expand Down