summaryrefslogtreecommitdiff
path: root/support
diff options
context:
space:
mode:
authorThomas Petazzoni <thomas.petazzoni@bootlin.com>2019-05-13 20:47:10 +0200
committerThomas Petazzoni <thomas.petazzoni@bootlin.com>2019-05-18 22:41:22 +0200
commit17809276b504ca4216cfb669700fd927192d79a6 (patch)
tree8039a2b5a9caf16a1ca3b4ffc671fc3fcc8cf446 /support
parent42d89c9b29f0699661488b9109e77e3577f63e62 (diff)
support/testing/tests: drop Python 2.x test in test_ipython
Since commit 6ebaef3818d6e3dc821616a33391eb6d594a053e ("package/python-ipython: bump to version 7.4.0"), ipython is no longer available for Python 2.x, as it requires Python 3.x. However, the corresponding test case that was testing iPython under Python 2.x was not removed at the same time, causing a failure of TestIPythonPy2 test. Let's drop the test that is no longer relevant. Fixes: https://gitlab.com/buildroot.org/buildroot/-/jobs/210208754 Cc: Fabrice Fontaine <fontaine.fabrice@gmail.com> Cc: Andrey Smirnov <andrew.smirnov@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Diffstat (limited to 'support')
-rw-r--r--support/testing/tests/package/test_ipython.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/support/testing/tests/package/test_ipython.py b/support/testing/tests/package/test_ipython.py
index 3b291d9583..50b00da7c2 100644
--- a/support/testing/tests/package/test_ipython.py
+++ b/support/testing/tests/package/test_ipython.py
@@ -8,20 +8,6 @@ from tests.package.test_python import TestPythonBase
# does, so this test ends up being a false-negative
-class TestIPythonPy2(TestPythonBase):
- config = TestPythonBase.config + \
- """
- BR2_PACKAGE_PYTHON=y
- BR2_PACKAGE_PYTHON_IPYTHON=y
- """
- interpreter = "ipython"
-
- def test_run(self):
- self.login()
- self.math_floor_test(40)
- self.libc_time_test(40)
-
-
class TestIPythonPy3(TestPythonBase):
config = TestPythonBase.config + \
"""