Fix relative path problem

This commit is contained in:
R. Richard 2019-08-01 15:12:58 +02:00
parent 38eec06b4d
commit 0a218c8d6d
1 changed files with 3 additions and 2 deletions

View File

@ -1,8 +1,8 @@
# pylint: disable=redefined-outer-name
from dataclasses import dataclass
from textwrap import dedent
from os import mkfifo
from os.path import join
from os import chdir, mkfifo
from os.path import dirname, join, realpath
from signal import SIGINT
from subprocess import DEVNULL, Popen, PIPE
from tempfile import TemporaryDirectory
@ -35,6 +35,7 @@ class CounterContext:
@pytest.fixture
def context():
with TemporaryDirectory() as workdir:
chdir(dirname(realpath(__file__)))
pipepath = join(workdir, 'test.pipe')
mkfifo(pipepath)
yield CounterContext(join(workdir, 'test.lock'), pipepath)