Skip to content

Commit 47e2843

Browse files
RonnyPfannschmidtgaborbernat
authored andcommitted
mark poetry tests as xfail on windows (#1474)
* Mark poetry tests as xfail on windows * Update tests/integration/test_package_int.py Co-Authored-By: Anthony Sottile <asottile@umich.edu> * fix formatting Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
1 parent 6a74205 commit 47e2843

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

docs/changelog/1474.misc.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Mark poetry related tests as xfail since its dependency pyrsistent won't install in ci due to missing wheels/build deps. - by :user:`RonnyPfannschmidt`

tests/integration/test_package_int.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,9 @@ def test_package_flit(initproj, cmd):
7878

7979
@pytest.mark.network
8080
@pytest.mark.skipif(sys.version_info < (3, 0), reason="poetry is Python 3 only")
81+
@pytest.mark.xfail(
82+
os.name == "nt", reason="https://github.com/tobgu/pyrsistent/issues/88 breaks poetry install",
83+
)
8184
def test_package_poetry(initproj, cmd):
8285
initproj(
8386
"magic-0.1",

0 commit comments

Comments
 (0)