kumquat-buildroot/support/testing/tests/package/test_python_attrs.py
Asaf Kahlon 502b8576c4 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>
2021-09-27 16:34:22 +02:00

12 lines
328 B
Python

from tests.package.test_python import TestPythonPackageBase
class TestPythonPy3Attrs(TestPythonPackageBase):
__test__ = True
config = TestPythonPackageBase.config + \
"""
BR2_PACKAGE_PYTHON3=y
BR2_PACKAGE_PYTHON_ATTRS=y
"""
sample_scripts = ["tests/package/sample_python_attrs.py"]