diff options
Diffstat (limited to 'tests/examples/autotools.py')
-rw-r--r-- | tests/examples/autotools.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/examples/autotools.py b/tests/examples/autotools.py index 96827ff4c..d653cdcd2 100644 --- a/tests/examples/autotools.py +++ b/tests/examples/autotools.py @@ -17,7 +17,7 @@ DATA_DIR = os.path.join( reason='Examples are writtent for x86-64') @pytest.mark.skipif(not IS_LINUX or not HAVE_BWRAP, reason='Only available on linux with bubblewrap') @pytest.mark.datafiles(DATA_DIR) -def test_autotools_build(cli, tmpdir, datafiles): +def test_autotools_build(cli, datafiles): project = os.path.join(datafiles.dirname, datafiles.basename) checkout = os.path.join(cli.directory, 'checkout') @@ -40,7 +40,7 @@ def test_autotools_build(cli, tmpdir, datafiles): reason='Examples are writtent for x86-64') @pytest.mark.skipif(not IS_LINUX or not HAVE_BWRAP, reason='Only available on linux with bubblewrap') @pytest.mark.datafiles(DATA_DIR) -def test_autotools_run(cli, tmpdir, datafiles): +def test_autotools_run(cli, datafiles): project = os.path.join(datafiles.dirname, datafiles.basename) result = cli.run(project=project, args=['build', 'hello.bst']) |