aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArthur Zamarin <arthurzam@gentoo.org>2022-05-19 23:53:51 +0300
committerArthur Zamarin <arthurzam@gentoo.org>2022-05-19 23:53:51 +0300
commitf81d2eb600df12924a5cd2afa8746a632641439d (patch)
treed0eb1cc4e3ffe1062ff28861a53efe3e8860dbe1 /src/snakeoil
parentgha: disable fail-fast (diff)
downloadsnakeoil-f81d2eb600df12924a5cd2afa8746a632641439d.tar.gz
snakeoil-f81d2eb600df12924a5cd2afa8746a632641439d.tar.bz2
snakeoil-f81d2eb600df12924a5cd2afa8746a632641439d.zip
tests: remove TempDir fixture
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'src/snakeoil')
-rw-r--r--src/snakeoil/test/fixtures.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/snakeoil/test/fixtures.py b/src/snakeoil/test/fixtures.py
index 2526b140..49b5aa29 100644
--- a/src/snakeoil/test/fixtures.py
+++ b/src/snakeoil/test/fixtures.py
@@ -5,14 +5,6 @@ import pytest
from . import random_str
-class TempDir:
- """Provide temporary directory to every test method."""
-
- @pytest.fixture(autouse=True)
- def __setup(self, tmpdir):
- self.dir = str(tmpdir)
-
-
class RandomPath:
"""Provide random path in a temporary directory to every test method."""