From 85a25777344f28450146a06d9ca37db585dd0cdd Mon Sep 17 00:00:00 2001 From: Claudio Jolowicz Date: Sat, 13 Mar 2021 23:39:12 +0100 Subject: [PATCH] test: Mark test for path dependencies as XFAIL --- tests/functional/test_functional.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/functional/test_functional.py b/tests/functional/test_functional.py index 5de3a933..393d181f 100644 --- a/tests/functional/test_functional.py +++ b/tests/functional/test_functional.py @@ -2,6 +2,7 @@ from pathlib import Path import nox.sessions +import pytest from tests.functional.conftest import list_packages from tests.functional.conftest import Project from tests.functional.conftest import run_nox_with_noxfile @@ -329,6 +330,8 @@ def test(session: nox_poetry.Session) -> None: assert set(expected) == set(packages) +# https://github.com/python-poetry/poetry/issues/3468 +@pytest.mark.xfail(reason="Poetry exports path requirements in an invalid format.") def test_install_with_path_dependency(datadir: Path) -> None: """It installs the package.""" project = Project(datadir / "path-dependency")