summaryrefslogtreecommitdiff
path: root/dev-python/tox/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-12-24 14:11:38 +0000
committerV3n3RiX <venerix@redcorelinux.org>2018-12-24 14:11:38 +0000
commitde49812990871e1705b64051c35161d5e6400269 (patch)
tree5e1e8fcb0ff4579dbd22a1bfee28a6b97dc8aaeb /dev-python/tox/files
parent536c3711867ec947c1738f2c4b96f22e4863322d (diff)
gentoo resync : 24.12.2018
Diffstat (limited to 'dev-python/tox/files')
-rw-r--r--dev-python/tox/files/tox-3.6.0-skip-broken-tests.patch39
1 files changed, 39 insertions, 0 deletions
diff --git a/dev-python/tox/files/tox-3.6.0-skip-broken-tests.patch b/dev-python/tox/files/tox-3.6.0-skip-broken-tests.patch
new file mode 100644
index 000000000000..ea39bb30c1c7
--- /dev/null
+++ b/dev-python/tox/files/tox-3.6.0-skip-broken-tests.patch
@@ -0,0 +1,39 @@
+diff --git a/tests/unit/test_config.py b/tests/unit/test_config.py
+index 08a1ced..86e3fb6 100644
+--- a/tests/unit/test_config.py
++++ b/tests/unit/test_config.py
+@@ -1869,7 +1869,7 @@ class TestConfigTestEnv:
+ for name, config in configs.items():
+ assert config.basepython == "python{}.{}".format(name[2], name[3])
+
+- def test_default_factors_conflict(self, newconfig, capsys):
++ def xtest_default_factors_conflict(self, newconfig, capsys):
+ with pytest.warns(UserWarning, match=r"conflicting basepython .*"):
+ config = newconfig(
+ """
+diff --git a/tests/unit/test_interpreters.py b/tests/unit/test_interpreters.py
+index 0787b95..51e2ccc 100644
+--- a/tests/unit/test_interpreters.py
++++ b/tests/unit/test_interpreters.py
+@@ -60,7 +60,7 @@ def test_locate_via_py(monkeypatch):
+ assert fake_popen.last_call == ("py", "-3", "-c")
+
+
+-def test_tox_get_python_executable():
++def xtest_tox_get_python_executable():
+ class envconfig:
+ basepython = sys.executable
+ envname = "pyxx"
+diff --git a/tests/unit/test_venv.py b/tests/unit/test_venv.py
+index 51cb3c0..31a273e 100644
+--- a/tests/unit/test_venv.py
++++ b/tests/unit/test_venv.py
+@@ -427,7 +427,7 @@ def test_install_command_not_installed_bash(newmocksession):
+ mocksession.report.expect("warning", "*test command found but not*")
+
+
+-def test_install_python3(newmocksession):
++def xtest_install_python3(newmocksession):
+ if not py.path.local.sysfind("python3"):
+ pytest.skip("needs python3")
+ mocksession = newmocksession(