support/testing: remove python2 tests for automat and attrs

Since commit ef5c8be25a those packages
depend on python3. Hence, we can remove the python2 tests.

Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
This commit is contained in:
Asaf Kahlon 2021-09-27 09:39:33 +03:00 committed by Arnout Vandecappelle (Essensium/Mind)
parent a79cc5f074
commit 502b8576c4
2 changed files with 0 additions and 21 deletions

View File

@ -1,16 +1,6 @@
from tests.package.test_python import TestPythonPackageBase
class TestPythonPy2Attrs(TestPythonPackageBase):
__test__ = True
config = TestPythonPackageBase.config + \
"""
BR2_PACKAGE_PYTHON=y
BR2_PACKAGE_PYTHON_ATTRS=y
"""
sample_scripts = ["tests/package/sample_python_attrs.py"]
class TestPythonPy3Attrs(TestPythonPackageBase):
__test__ = True
config = TestPythonPackageBase.config + \

View File

@ -1,17 +1,6 @@
from tests.package.test_python import TestPythonPackageBase
class TestPythonPy2Automat(TestPythonPackageBase):
__test__ = True
config = TestPythonPackageBase.config + \
"""
BR2_PACKAGE_PYTHON=y
BR2_PACKAGE_PYTHON_AUTOMAT=y
"""
sample_scripts = ["tests/package/sample_python_automat.py"]
timeout = 30
class TestPythonPy3Automat(TestPythonPackageBase):
__test__ = True
config = TestPythonPackageBase.config + \