From 8dd451ada6105841f1bd40dfca965da2d5779164 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sat, 1 May 2021 22:07:58 -0400 Subject: test: update to latest pytest --- tests/mixins.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/mixins.py b/tests/mixins.py index dd9b4e3e..0638f336 100644 --- a/tests/mixins.py +++ b/tests/mixins.py @@ -61,7 +61,7 @@ class TempDirMixin: def _temp_dir(self, tmpdir_factory): """Create a temp dir for the tests, if they want it.""" if self.run_in_temp_dir: - tmpdir = tmpdir_factory.mktemp("") + tmpdir = tmpdir_factory.mktemp("t") self.temp_dir = str(tmpdir) with change_dir(self.temp_dir): # Modules should be importable from this temp directory. We don't -- cgit v1.2.1