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

Add support for async fn in proptest! #185

Commits on Oct 26, 2020

  1. Add support for async fn in proptest!

    Adds cases for asynchronous functions with the proptest macros and a
    test case using tokio.
    
    Should work for both tokio::test and async_std::test attributes.
    
    Support for async closures not added as they are not available
    in the latest stable rust, but they are not supported
    by the test attributes currently regardless.
    
    Additionally as async/await syntax requires rust 1.39
    sets minimum CI version to 1.39.
    johnchildren committed Oct 26, 2020
    Configuration menu
    Copy the full SHA
    70a6881 View commit details
    Browse the repository at this point in the history

Commits on Oct 27, 2020

  1. Bump MVRC in CI to 1.40

    tempfile requires remove_dir_all which no longer supports rustc < 1.40.
    johnchildren committed Oct 27, 2020
    Configuration menu
    Copy the full SHA
    20a840b View commit details
    Browse the repository at this point in the history