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

Replace all tmpdir fixtures with tmp_path (#3551) #3955

Merged
merged 1 commit into from
Aug 2, 2019

Commits on Aug 2, 2019

  1. Replace all tmpdir fixtures with tmp_path (aio-libs#3551)

    tmp_path is the replacement fixture in pytest for tmpdir; tmp_path
    uses the builtin pathlib.Path class. As it says on the tin, this
    commit replaces every instance of tmpdir in the test suite with
    tmp_path. Aside from s/tmpdir/tmp_path/ this also required changing
    instances of `tmpdir.join(foo)` to `tmp_path / foo`.
    
    This is intended to comprehensively address aio-libs#3551 and should have
    no side effects.
    vaneseltine committed Aug 2, 2019
    Configuration menu
    Copy the full SHA
    de85b78 View commit details
    Browse the repository at this point in the history