summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRonny Pfannschmidt <opensource@ronnypfannschmidt.de>2019-12-02 18:08:17 +0100
committerBernát Gábor <bgabor8@bloomberg.net>2019-12-02 17:08:17 +0000
commit47e2843253512a5583fca63a85e398daf184607c (patch)
tree35f6d11d1e0f1faeb7001d1b6cbd01b56660c807
parent6a742052197ecf97b6c26e0483e192c1c4bba47e (diff)
downloadtox-git-47e2843253512a5583fca63a85e398daf184607c.tar.gz
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>
-rw-r--r--docs/changelog/1474.misc.rst1
-rw-r--r--tests/integration/test_package_int.py3
2 files changed, 4 insertions, 0 deletions
diff --git a/docs/changelog/1474.misc.rst b/docs/changelog/1474.misc.rst
new file mode 100644
index 00000000..cd696c8f
--- /dev/null
+++ b/docs/changelog/1474.misc.rst
@@ -0,0 +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`
diff --git a/tests/integration/test_package_int.py b/tests/integration/test_package_int.py
index a982c2a0..6a34f01d 100644
--- a/tests/integration/test_package_int.py
+++ b/tests/integration/test_package_int.py
@@ -78,6 +78,9 @@ def test_package_flit(initproj, cmd):
@pytest.mark.network
@pytest.mark.skipif(sys.version_info < (3, 0), reason="poetry is Python 3 only")
+@pytest.mark.xfail(
+ os.name == "nt", reason="https://github.com/tobgu/pyrsistent/issues/88 breaks poetry install",
+)
def test_package_poetry(initproj, cmd):
initproj(
"magic-0.1",