Skip to content

Bump pytest from 6.2.2 to 6.2.3

WKDV Bot requested to merge dependabot/pip/pytest-6.2.3 into develop

Bumps pytest from 6.2.2 to 6.2.3.

Release notes

Sourced from pytest's releases.

6.2.3

pytest 6.2.3 (2021-04-03)

Bug Fixes

  • #8414: pytest used to create directories under /tmp with world-readable permissions. This means that any user in the system was able to read information written by tests in temporary directories (such as those created by the tmp_path/tmpdir fixture). Now the directories are created with private permissions.

    pytest used silenty use a pre-existing /tmp/pytest-of-<username> directory, even if owned by another user. This means another user could pre-create such a directory and gain control of another user's temporary directory. Now such a condition results in an error.

Commits
  • 3a2fd96 Prepare release version 6.2.3
  • 138b19a Merge pull request #8517 from bluetech/backport-mktmp
  • 822686e tmpdir: prevent using a non-private root temp directory
  • 9dc54f7 tmpdir: fix temporary directories created with world-readable permissions
  • 93dbae2 pathlib: inline ensure_reset_dir()
  • 02fdbe2 pathlib: remove useless temporary variable
  • 12e7db8 Merge pull request #8285 from nicoddemus/backport-8280
  • 56e4392 Merge pull request #8280 from xuhdev/module
  • 8220eca Merge pull request #8275 from pytest-dev/release-6.2.2
  • See full diff in compare view

Merge request reports