All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] support/testing: remove TestPythonPy2{Cryptography, ServiceIdentity, Treq, Twisted, Txtorcon}
@ 2021-08-22  9:05 Romain Naour
  2021-08-23 22:26 ` Arnout Vandecappelle
  0 siblings, 1 reply; 2+ messages in thread
From: Romain Naour @ 2021-08-22  9:05 UTC (permalink / raw)
  To: buildroot; +Cc: Romain Naour

The python2 support has been removed since the python-idna bump to version 3.2 [1]

[1] 0c7e30b43a5e98abfc8db521a6415b5a5c1c267f

Signed-off-by: Romain Naour <romain.naour@gmail.com>
---
Now python-cryptography only support python3, the python infra will
provide the host variant for python3.
We can remove package/python3-cryptography.
---
 .../testing/tests/package/test_python_cryptography.py | 11 -----------
 .../tests/package/test_python_service_identity.py     | 11 -----------
 support/testing/tests/package/test_python_treq.py     |  9 ---------
 support/testing/tests/package/test_python_twisted.py  |  9 ---------
 support/testing/tests/package/test_python_txtorcon.py | 11 -----------
 5 files changed, 51 deletions(-)

diff --git a/support/testing/tests/package/test_python_cryptography.py b/support/testing/tests/package/test_python_cryptography.py
index 14515fcd2d..62f0ca0def 100644
--- a/support/testing/tests/package/test_python_cryptography.py
+++ b/support/testing/tests/package/test_python_cryptography.py
@@ -1,17 +1,6 @@
 from tests.package.test_python import TestPythonPackageBase
 
 
-class TestPythonPy2Cryptography(TestPythonPackageBase):
-    __test__ = True
-    config = TestPythonPackageBase.config + \
-        """
-        BR2_PACKAGE_PYTHON=y
-        BR2_PACKAGE_PYTHON_CRYPTOGRAPHY=y
-        """
-    sample_scripts = ["tests/package/sample_python_cryptography.py"]
-    timeout = 40
-
-
 class TestPythonPy3Cryptography(TestPythonPackageBase):
     __test__ = True
     config = TestPythonPackageBase.config + \
diff --git a/support/testing/tests/package/test_python_service_identity.py b/support/testing/tests/package/test_python_service_identity.py
index 6aeb77de8c..09cfbe0a26 100644
--- a/support/testing/tests/package/test_python_service_identity.py
+++ b/support/testing/tests/package/test_python_service_identity.py
@@ -1,17 +1,6 @@
 from tests.package.test_python import TestPythonPackageBase
 
 
-class TestPythonPy2ServiceIdentity(TestPythonPackageBase):
-    __test__ = True
-    config = TestPythonPackageBase.config + \
-        """
-        BR2_PACKAGE_PYTHON=y
-        BR2_PACKAGE_PYTHON_SERVICE_IDENTITY=y
-        """
-    sample_scripts = ["tests/package/sample_python_service_identity.py"]
-    timeout = 30
-
-
 class TestPythonPy3ServiceIdentity(TestPythonPackageBase):
     __test__ = True
     config = TestPythonPackageBase.config + \
diff --git a/support/testing/tests/package/test_python_treq.py b/support/testing/tests/package/test_python_treq.py
index e24ae845be..d7a23829ea 100644
--- a/support/testing/tests/package/test_python_treq.py
+++ b/support/testing/tests/package/test_python_treq.py
@@ -12,15 +12,6 @@ class TestPythonTreq(TestPythonPackageBase):
         self.assertEqual(exit_code, 0)
 
 
-class TestPythonPy2Treq(TestPythonTreq):
-    __test__ = True
-    config = TestPythonTreq.config + \
-        """
-        BR2_PACKAGE_PYTHON=y
-        BR2_PACKAGE_PYTHON_TREQ=y
-        """
-
-
 class TestPythonPy3Treq(TestPythonTreq):
     __test__ = True
     config = TestPythonTreq.config + \
diff --git a/support/testing/tests/package/test_python_twisted.py b/support/testing/tests/package/test_python_twisted.py
index a458ee45dd..e87312db13 100644
--- a/support/testing/tests/package/test_python_twisted.py
+++ b/support/testing/tests/package/test_python_twisted.py
@@ -21,15 +21,6 @@ class TestPythonTwisted(TestPythonPackageBase):
         self.assertEqual(exit_code, 0)
 
 
-class TestPythonPy2Twisted(TestPythonTwisted):
-    __test__ = True
-    config = TestPythonTwisted.config + \
-        """
-        BR2_PACKAGE_PYTHON=y
-        BR2_PACKAGE_PYTHON_TWISTED=y
-        """
-
-
 class TestPythonPy3Twisted(TestPythonTwisted):
     __test__ = True
     config = TestPythonTwisted.config + \
diff --git a/support/testing/tests/package/test_python_txtorcon.py b/support/testing/tests/package/test_python_txtorcon.py
index 1ac2f6919a..8e74190ee1 100644
--- a/support/testing/tests/package/test_python_txtorcon.py
+++ b/support/testing/tests/package/test_python_txtorcon.py
@@ -1,17 +1,6 @@
 from tests.package.test_python import TestPythonPackageBase
 
 
-class TestPythonPy2Txtorcon(TestPythonPackageBase):
-    __test__ = True
-    config = TestPythonPackageBase.config + \
-        """
-        BR2_PACKAGE_PYTHON=y
-        BR2_PACKAGE_PYTHON_TXTORCON=y
-        """
-    sample_scripts = ["tests/package/sample_python_txtorcon.py"]
-    timeout = 30
-
-
 class TestPythonPy3Txtorcon(TestPythonPackageBase):
     __test__ = True
     config = TestPythonPackageBase.config + \
-- 
2.31.1

_______________________________________________
buildroot mailing list
buildroot@busybox.net
http://lists.busybox.net/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [Buildroot] [PATCH] support/testing: remove TestPythonPy2{Cryptography, ServiceIdentity, Treq, Twisted, Txtorcon}
  2021-08-22  9:05 [Buildroot] [PATCH] support/testing: remove TestPythonPy2{Cryptography, ServiceIdentity, Treq, Twisted, Txtorcon} Romain Naour
@ 2021-08-23 22:26 ` Arnout Vandecappelle
  0 siblings, 0 replies; 2+ messages in thread
From: Arnout Vandecappelle @ 2021-08-23 22:26 UTC (permalink / raw)
  To: Romain Naour, buildroot



On 22/08/2021 11:05, Romain Naour wrote:
> The python2 support has been removed since the python-idna bump to version 3.2 [1]
> 
> [1] 0c7e30b43a5e98abfc8db521a6415b5a5c1c267f
> 
> Signed-off-by: Romain Naour <romain.naour@gmail.com>

 Applied to master, thanks.

 Regards,
 Arnout

> ---
> Now python-cryptography only support python3, the python infra will
> provide the host variant for python3.
> We can remove package/python3-cryptography.
> ---
>  .../testing/tests/package/test_python_cryptography.py | 11 -----------
>  .../tests/package/test_python_service_identity.py     | 11 -----------
>  support/testing/tests/package/test_python_treq.py     |  9 ---------
>  support/testing/tests/package/test_python_twisted.py  |  9 ---------
>  support/testing/tests/package/test_python_txtorcon.py | 11 -----------
>  5 files changed, 51 deletions(-)
> 
> diff --git a/support/testing/tests/package/test_python_cryptography.py b/support/testing/tests/package/test_python_cryptography.py
> index 14515fcd2d..62f0ca0def 100644
> --- a/support/testing/tests/package/test_python_cryptography.py
> +++ b/support/testing/tests/package/test_python_cryptography.py
> @@ -1,17 +1,6 @@
>  from tests.package.test_python import TestPythonPackageBase
>  
>  
> -class TestPythonPy2Cryptography(TestPythonPackageBase):
> -    __test__ = True
> -    config = TestPythonPackageBase.config + \
> -        """
> -        BR2_PACKAGE_PYTHON=y
> -        BR2_PACKAGE_PYTHON_CRYPTOGRAPHY=y
> -        """
> -    sample_scripts = ["tests/package/sample_python_cryptography.py"]
> -    timeout = 40
> -
> -
>  class TestPythonPy3Cryptography(TestPythonPackageBase):
>      __test__ = True
>      config = TestPythonPackageBase.config + \
> diff --git a/support/testing/tests/package/test_python_service_identity.py b/support/testing/tests/package/test_python_service_identity.py
> index 6aeb77de8c..09cfbe0a26 100644
> --- a/support/testing/tests/package/test_python_service_identity.py
> +++ b/support/testing/tests/package/test_python_service_identity.py
> @@ -1,17 +1,6 @@
>  from tests.package.test_python import TestPythonPackageBase
>  
>  
> -class TestPythonPy2ServiceIdentity(TestPythonPackageBase):
> -    __test__ = True
> -    config = TestPythonPackageBase.config + \
> -        """
> -        BR2_PACKAGE_PYTHON=y
> -        BR2_PACKAGE_PYTHON_SERVICE_IDENTITY=y
> -        """
> -    sample_scripts = ["tests/package/sample_python_service_identity.py"]
> -    timeout = 30
> -
> -
>  class TestPythonPy3ServiceIdentity(TestPythonPackageBase):
>      __test__ = True
>      config = TestPythonPackageBase.config + \
> diff --git a/support/testing/tests/package/test_python_treq.py b/support/testing/tests/package/test_python_treq.py
> index e24ae845be..d7a23829ea 100644
> --- a/support/testing/tests/package/test_python_treq.py
> +++ b/support/testing/tests/package/test_python_treq.py
> @@ -12,15 +12,6 @@ class TestPythonTreq(TestPythonPackageBase):
>          self.assertEqual(exit_code, 0)
>  
>  
> -class TestPythonPy2Treq(TestPythonTreq):
> -    __test__ = True
> -    config = TestPythonTreq.config + \
> -        """
> -        BR2_PACKAGE_PYTHON=y
> -        BR2_PACKAGE_PYTHON_TREQ=y
> -        """
> -
> -
>  class TestPythonPy3Treq(TestPythonTreq):
>      __test__ = True
>      config = TestPythonTreq.config + \
> diff --git a/support/testing/tests/package/test_python_twisted.py b/support/testing/tests/package/test_python_twisted.py
> index a458ee45dd..e87312db13 100644
> --- a/support/testing/tests/package/test_python_twisted.py
> +++ b/support/testing/tests/package/test_python_twisted.py
> @@ -21,15 +21,6 @@ class TestPythonTwisted(TestPythonPackageBase):
>          self.assertEqual(exit_code, 0)
>  
>  
> -class TestPythonPy2Twisted(TestPythonTwisted):
> -    __test__ = True
> -    config = TestPythonTwisted.config + \
> -        """
> -        BR2_PACKAGE_PYTHON=y
> -        BR2_PACKAGE_PYTHON_TWISTED=y
> -        """
> -
> -
>  class TestPythonPy3Twisted(TestPythonTwisted):
>      __test__ = True
>      config = TestPythonTwisted.config + \
> diff --git a/support/testing/tests/package/test_python_txtorcon.py b/support/testing/tests/package/test_python_txtorcon.py
> index 1ac2f6919a..8e74190ee1 100644
> --- a/support/testing/tests/package/test_python_txtorcon.py
> +++ b/support/testing/tests/package/test_python_txtorcon.py
> @@ -1,17 +1,6 @@
>  from tests.package.test_python import TestPythonPackageBase
>  
>  
> -class TestPythonPy2Txtorcon(TestPythonPackageBase):
> -    __test__ = True
> -    config = TestPythonPackageBase.config + \
> -        """
> -        BR2_PACKAGE_PYTHON=y
> -        BR2_PACKAGE_PYTHON_TXTORCON=y
> -        """
> -    sample_scripts = ["tests/package/sample_python_txtorcon.py"]
> -    timeout = 30
> -
> -
>  class TestPythonPy3Txtorcon(TestPythonPackageBase):
>      __test__ = True
>      config = TestPythonPackageBase.config + \
> 
_______________________________________________
buildroot mailing list
buildroot@busybox.net
http://lists.busybox.net/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-08-23 22:26 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-22  9:05 [Buildroot] [PATCH] support/testing: remove TestPythonPy2{Cryptography, ServiceIdentity, Treq, Twisted, Txtorcon} Romain Naour
2021-08-23 22:26 ` Arnout Vandecappelle

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.