This commit is contained in:
Ayaz Salikhov
2022-01-18 19:54:28 +03:00
parent 2a1316c9ac
commit 4049365492
4 changed files with 4 additions and 4 deletions

View File

@@ -9,7 +9,7 @@ from pathlib import Path
from conftest import TrackedContainer from conftest import TrackedContainer
LOGGER = logging.getLogger(__name__) LOGGER = logging.getLogger(__name__)
THIS_DIR = Path(__file__).absolute() THIS_DIR = Path(__file__).parent.resolve()
@pytest.mark.parametrize( @pytest.mark.parametrize(

View File

@@ -9,7 +9,7 @@ from pathlib import Path
from conftest import TrackedContainer from conftest import TrackedContainer
LOGGER = logging.getLogger(__name__) LOGGER = logging.getLogger(__name__)
THIS_DIR = Path(__file__).absolute() THIS_DIR = Path(__file__).parent.resolve()
@pytest.mark.parametrize( @pytest.mark.parametrize(

View File

@@ -9,7 +9,7 @@ from pathlib import Path
from conftest import TrackedContainer from conftest import TrackedContainer
LOGGER = logging.getLogger(__name__) LOGGER = logging.getLogger(__name__)
THIS_DIR = Path(__file__).absolute() THIS_DIR = Path(__file__).parent.resolve()
@pytest.mark.parametrize( @pytest.mark.parametrize(

View File

@@ -7,7 +7,7 @@ from pathlib import Path
from conftest import TrackedContainer from conftest import TrackedContainer
LOGGER = logging.getLogger(__name__) LOGGER = logging.getLogger(__name__)
THIS_DIR = Path(__file__).absolute() THIS_DIR = Path(__file__).parent.resolve()
def test_units(container: TrackedContainer) -> None: def test_units(container: TrackedContainer) -> None: