Skip to content

Commit

Permalink
test: Mark test for path dependencies as XFAIL
Browse files Browse the repository at this point in the history
  • Loading branch information
cjolowicz committed Mar 14, 2021
1 parent 224a42e commit 85a2577
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/functional/test_functional.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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")
Expand Down

0 comments on commit 85a2577

Please sign in to comment.