* [Buildroot] [RFC] testing: add python-cryptography tests @ 2017-09-04 7:15 yegorslists at googlemail.com 2017-09-06 2:31 ` Ricardo Martincoski 0 siblings, 1 reply; 8+ messages in thread From: yegorslists at googlemail.com @ 2017-09-04 7:15 UTC (permalink / raw) To: buildroot From: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> --- .gitlab-ci.yml | 2 ++ .../tests/package/test_python-cryptography.py | 39 ++++++++++++++++++++++ 2 files changed, 41 insertions(+) create mode 100644 support/testing/tests/package/test_python-cryptography.py diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b44c935f2..eb65e11a0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -250,6 +250,8 @@ tests.package.test_ipython.TestIPythonPy2: *runtime_test tests.package.test_ipython.TestIPythonPy3: *runtime_test tests.package.test_python.TestPython2: *runtime_test tests.package.test_python.TestPython3: *runtime_test +tests.package.test_python-cryptography.TestPythonPy2Cryptography: *runtime_test +tests.package.test_python-cryptography.TestPythonPy3Cryptography: *runtime_test tests.toolchain.test_external.TestExternalToolchainBuildrootMusl: *runtime_test tests.toolchain.test_external.TestExternalToolchainBuildrootuClibc: *runtime_test tests.toolchain.test_external.TestExternalToolchainCCache: *runtime_test diff --git a/support/testing/tests/package/test_python-cryptography.py b/support/testing/tests/package/test_python-cryptography.py new file mode 100644 index 000000000..0b1d1f366 --- /dev/null +++ b/support/testing/tests/package/test_python-cryptography.py @@ -0,0 +1,39 @@ +import os + +from tests.package.test_python import TestPythonBase + +class TestPythonPy2Cryptography(TestPythonBase): + config = TestPythonBase.config + \ +""" +BR2_PACKAGE_PYTHON=y +BR2_PACKAGE_PYTHON_CRYPTOGRAPHY=y +""" + def fernet_test(self, timeout=-1): + """Test Fernet.""" + cmd = self.interpreter + " -c 'from cryptography.fernet import Fernet;" + cmd += "key = Fernet.generate_key();" + cmd += "f = Fernet(key)'" + _, exit_code = self.emulator.run(cmd, timeout) + self.assertEqual(exit_code, 0) + + def test_run(self): + self.login() + self.fernet_test(40) + +class TestPythonPy3Cryptography(TestPythonBase): + config = TestPythonBase.config + \ +""" +BR2_PACKAGE_PYTHON3=y +BR2_PACKAGE_PYTHON_CRYPTOGRAPHY=y +""" + def fernet_test(self, timeout=-1): + """Test Fernet.""" + cmd = self.interpreter + " -c 'from cryptography.fernet import Fernet;" + cmd += "key = Fernet.generate_key();" + cmd += "f = Fernet(key)'" + _, exit_code = self.emulator.run(cmd, timeout) + self.assertEqual(exit_code, 0) + + def test_run(self): + self.login() + self.fernet_test(40) -- 2.11.0 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* [Buildroot] [RFC] testing: add python-cryptography tests 2017-09-04 7:15 [Buildroot] [RFC] testing: add python-cryptography tests yegorslists at googlemail.com @ 2017-09-06 2:31 ` Ricardo Martincoski 2017-09-06 8:06 ` Thomas Petazzoni 2017-09-06 9:44 ` Yegor Yefremov 0 siblings, 2 replies; 8+ messages in thread From: Ricardo Martincoski @ 2017-09-06 2:31 UTC (permalink / raw) To: buildroot Hello, Looks good. I would like to propose some changes but before you resend let's hear what you and others think about 1) and 2) below. On Mon, Sep 04, 2017 at 04:15 AM, wrote: [snip > +++ b/.gitlab-ci.yml > @@ -250,6 +250,8 @@ tests.package.test_ipython.TestIPythonPy2: *runtime_test > tests.package.test_ipython.TestIPythonPy3: *runtime_test > tests.package.test_python.TestPython2: *runtime_test > tests.package.test_python.TestPython3: *runtime_test > +tests.package.test_python-cryptography.TestPythonPy2Cryptography: *runtime_test > +tests.package.test_python-cryptography.TestPythonPy3Cryptography: *runtime_test > tests.toolchain.test_external.TestExternalToolchainBuildrootMusl: *runtime_test > tests.toolchain.test_external.TestExternalToolchainBuildrootuClibc: *runtime_test > tests.toolchain.test_external.TestExternalToolchainCCache: *runtime_test Are you aware of 'make .gitlab-ci.yml'? It generates the list always in a reproducible way (using LC_ALL=C). You don't need to change it by hand. > diff --git a/support/testing/tests/package/test_python-cryptography.py b/support/testing/tests/package/test_python-cryptography.py > new file mode 100644 > index 000000000..0b1d1f366 > --- /dev/null > +++ b/support/testing/tests/package/test_python-cryptography.py 1) I propose to merge this file into the existing test_python.py The rationale is: For the long term: As I see, the test infra is used to detect regressions. It is important for both the basic features and also for the complex scenarios (like the dependencies of this package). But I don't expect to see tests added to every single package or python package (it would take a very long time to run all those tests), so this file probably will not grow too much and we can keep the tests together. For the short run: We avoid for now to deal with filenames with '-' as they can generate more code. If for instance test_python.py was named test_python-base.py you could not easily import it. You clearly used the same "old" code style as in test_python.py. If you merge the files no reviewer will ask you to fix the 7 code style warnings that flake8 generates or to use the new indented style for configs (to follow cf3cd4388a support/tests: allow properly indented config fragment). Of course, if you are willing to send a 2 patch series, first adapting the current file to the PEP8 + indented config and then adding your test, it would be great. If not, it can be done later. I can send a code style series if people don't disagree it is useful. > @@ -0,0 +1,39 @@ > +import os > + > +from tests.package.test_python import TestPythonBase > + > +class TestPythonPy2Cryptography(TestPythonBase): > + config = TestPythonBase.config + \ > +""" > +BR2_PACKAGE_PYTHON=y > +BR2_PACKAGE_PYTHON_CRYPTOGRAPHY=y > +""" > + def fernet_test(self, timeout=-1): > + """Test Fernet.""" This comment is not really needed. > + cmd = self.interpreter + " -c 'from cryptography.fernet import Fernet;" > + cmd += "key = Fernet.generate_key();" > + cmd += "f = Fernet(key)'" > + _, exit_code = self.emulator.run(cmd, timeout) > + self.assertEqual(exit_code, 0) > + > + def test_run(self): > + self.login() > + self.fernet_test(40) > + > +class TestPythonPy3Cryptography(TestPythonBase): > + config = TestPythonBase.config + \ > +""" > +BR2_PACKAGE_PYTHON3=y > +BR2_PACKAGE_PYTHON_CRYPTOGRAPHY=y > +""" > + def fernet_test(self, timeout=-1): > + """Test Fernet.""" > + cmd = self.interpreter + " -c 'from cryptography.fernet import Fernet;" > + cmd += "key = Fernet.generate_key();" > + cmd += "f = Fernet(key)'" > + _, exit_code = self.emulator.run(cmd, timeout) > + self.assertEqual(exit_code, 0) 2) to avoid duplicate code I suggest something like this: class TestPythonCryptography(TestPythonBase): def fernet_test(self, timeout=-1): ... class TestPythonPy2Cryptography(TestPythonCryptography): config = TestPythonBase.config + \ ... def test_run(self): ... class TestPythonPy3Cryptography(TestPythonCryptography): config = TestPythonBase.config + \ ... def test_run(self): ... > + > + def test_run(self): > + self.login() > + self.fernet_test(40) > -- And also a question concerning the runtime: For the Python 3 test, all went well. But for Python 2 there are some scary messages on the log https://gitlab.com/RicardoMartincoski/buildroot/-/jobs/31298616/artifacts/download ERROR:root:code for hash md5 was not found. Traceback (most recent call last): File "usr/lib/python2.7/hashlib.py", line 147, in <module> File "usr/lib/python2.7/hashlib.py", line 97, in __get_builtin_constructor ValueError: unsupported hash type md5 and the same messages repeat for sha1, sha224, sha256, sha384 and sha512. But I run your tests using -k, then I entered the qemu using the command in the first line of TestPythonPy2Cryptography-run.log, then I called its Python shell and I could do this: >>> from cryptography.fernet import Fernet [scary messages] >>> key = Fernet.generate_key() >>> f = Fernet(key) >>> token = f.encrypt(b"buildroot") >>> token 'gAAAAAAAAAAuQ0Tj9azF8nIU2bmXXE07WOCSm0naDpdDAOQ0KhWCR2VrxeAoaTWx8gxP_pNVGLY_hLjFuY7vFI1D2dtKh6PKrg==' >>> f.decrypt(token) 'buildroot' So I suppose the test you created is testing enough. Could you (that knows more then me about the package) confirm it is OK to get these messages? If you think testing for the output of the command is needed to determine fail/pass, see TestNoTimezone. I didn't tested but I guess assertRegexpMatches and assertNotRegexpMatches can be helpful. Regards, Ricardo ^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] [RFC] testing: add python-cryptography tests 2017-09-06 2:31 ` Ricardo Martincoski @ 2017-09-06 8:06 ` Thomas Petazzoni 2017-09-06 11:31 ` Ricardo Martincoski 2017-09-06 9:44 ` Yegor Yefremov 1 sibling, 1 reply; 8+ messages in thread From: Thomas Petazzoni @ 2017-09-06 8:06 UTC (permalink / raw) To: buildroot Hello, On Tue, 05 Sep 2017 23:31:22 -0300, Ricardo Martincoski wrote: > 1) I propose to merge this file into the existing test_python.py > > The rationale is: > For the long term: > As I see, the test infra is used to detect regressions. It is important for both > the basic features and also for the complex scenarios (like the dependencies of > this package). But I don't expect to see tests added to every single package or > python package (it would take a very long time to run all those tests), so this > file probably will not grow too much and we can keep the tests together. Actually, I am not sure I agree with this last part. I even think we should probably have a minimal test for each and every Python package, because the only way to verify that their dependencies are correct is to have a runtime test for them. So it would be nice to have a very simple way to write Python related tests, like a list of tuples (Buildroot package, Python package to import or Python command to run), and have the test infrastructure "generate" tests for all entries in this list. Yes, it's going to be a long test suite, with lots of tests, but the test suite is anyway going to be long enough that it won't make sense for anyone to run the full test suite. I really see two use cases for the test suite: - You're doing tests in a specific area, and want to validate that you're not breaking things. For this use case, you'll just run the few test cases you're interested in. - We regularly run in a CI environment all the tests. For this situation, we don't really care how long it takes. Even if it takes 24 hours to run the full test suite, I don't think it's a big problem. Thanks! Thomas -- Thomas Petazzoni, CTO, Free Electrons Embedded Linux and Kernel engineering http://free-electrons.com ^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] [RFC] testing: add python-cryptography tests 2017-09-06 8:06 ` Thomas Petazzoni @ 2017-09-06 11:31 ` Ricardo Martincoski 2017-09-06 11:49 ` Thomas Petazzoni 0 siblings, 1 reply; 8+ messages in thread From: Ricardo Martincoski @ 2017-09-06 11:31 UTC (permalink / raw) To: buildroot Hello, On Tue, Wednesday, September 6, 2017 5:06:56 AM, Thomas Petazzoni wrote: > On Tue, 05 Sep 2017 23:31:22 -0300, Ricardo Martincoski wrote: > >> 1) I propose to merge this file into the existing test_python.py >> >> The rationale is: >> For the long term: >> As I see, the test infra is used to detect regressions. It is important for both >> the basic features and also for the complex scenarios (like the dependencies of >> this package). But I don't expect to see tests added to every single package or >> python package (it would take a very long time to run all those tests), so this >> file probably will not grow too much and we can keep the tests together. > > Actually, I am not sure I agree with this last part. I even think we > should probably have a minimal test for each and every Python package, > because the only way to verify that their dependencies are correct is > to have a runtime test for them. So it would be nice to have a very > simple way to write Python related tests, like a list of tuples > (Buildroot package, Python package to import or Python command to run), > and have the test infrastructure "generate" tests for all entries in > this list. I will cook a patch for this. > > Yes, it's going to be a long test suite, with lots of tests, but the > test suite is anyway going to be long enough that it won't make sense > for anyone to run the full test suite. I really see two use cases for > the test suite: > > - You're doing tests in a specific area, and want to validate that > you're not breaking things. For this use case, you'll just run the > few test cases you're interested in. > > - We regularly run in a CI environment all the tests. For this > situation, we don't really care how long it takes. Even if it takes > 24 hours to run the full test suite, I don't think it's a big > problem. OK, thank you for the explanation. Regards, -- Ricardo Martincoski DATACOM Ethernet Switches Rua Am?rica, 1000 - Eldorado do Sul, RS - 92990-000 - Brasil +55 51 3933 3000 - Ramal 3307 ricardo.martincoski at datacom.ind.br www.datacom.ind.br ^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] [RFC] testing: add python-cryptography tests 2017-09-06 11:31 ` Ricardo Martincoski @ 2017-09-06 11:49 ` Thomas Petazzoni 0 siblings, 0 replies; 8+ messages in thread From: Thomas Petazzoni @ 2017-09-06 11:49 UTC (permalink / raw) To: buildroot Hello, On Wed, 6 Sep 2017 08:31:01 -0300 (BRT), Ricardo Martincoski wrote: > > Actually, I am not sure I agree with this last part. I even think we > > should probably have a minimal test for each and every Python package, > > because the only way to verify that their dependencies are correct is > > to have a runtime test for them. So it would be nice to have a very > > simple way to write Python related tests, like a list of tuples > > (Buildroot package, Python package to import or Python command to run), > > and have the test infrastructure "generate" tests for all entries in > > this list. > > I will cook a patch for this. We were discussing this the other day with Yann on IRC, and we're not sure how to do it. Especially, should we have some of the testing information in the package recipe itself (package/python-<foo>/) ? Or do we keep all the testing related details in support/testing/ ? The former has the advantage that the testing information is closer to the package, and therefore people are more likely to add the corresponding test cases when they add a Python package. Something like: define PYTHON_FOO_TEST_CMDS python -c import foo endef On the other hand, it also spreads the testing information all over the tree, which may not be desirable. So I guess one needs to play a bit with this and see what a good solution could be. I don't have a strong opinion yet on how we should do this. Proposals welcome! Best regards, Thomas -- Thomas Petazzoni, CTO, Free Electrons Embedded Linux and Kernel engineering http://free-electrons.com ^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] [RFC] testing: add python-cryptography tests 2017-09-06 2:31 ` Ricardo Martincoski 2017-09-06 8:06 ` Thomas Petazzoni @ 2017-09-06 9:44 ` Yegor Yefremov 2017-09-06 11:09 ` Ricardo Martincoski 2017-09-06 11:27 ` Thomas Petazzoni 1 sibling, 2 replies; 8+ messages in thread From: Yegor Yefremov @ 2017-09-06 9:44 UTC (permalink / raw) To: buildroot On Wed, Sep 6, 2017 at 4:31 AM, Ricardo Martincoski <ricardo.martincoski@gmail.com> wrote: > Hello, > > Looks good. I would like to propose some changes but before you resend let's > hear what you and others think about 1) and 2) below. > > On Mon, Sep 04, 2017 at 04:15 AM, wrote: > > [snip >> +++ b/.gitlab-ci.yml >> @@ -250,6 +250,8 @@ tests.package.test_ipython.TestIPythonPy2: *runtime_test >> tests.package.test_ipython.TestIPythonPy3: *runtime_test >> tests.package.test_python.TestPython2: *runtime_test >> tests.package.test_python.TestPython3: *runtime_test >> +tests.package.test_python-cryptography.TestPythonPy2Cryptography: *runtime_test >> +tests.package.test_python-cryptography.TestPythonPy3Cryptography: *runtime_test >> tests.toolchain.test_external.TestExternalToolchainBuildrootMusl: *runtime_test >> tests.toolchain.test_external.TestExternalToolchainBuildrootuClibc: *runtime_test >> tests.toolchain.test_external.TestExternalToolchainCCache: *runtime_test > > Are you aware of 'make .gitlab-ci.yml'? > It generates the list always in a reproducible way (using LC_ALL=C). You don't > need to change it by hand. > >> diff --git a/support/testing/tests/package/test_python-cryptography.py b/support/testing/tests/package/test_python-cryptography.py >> new file mode 100644 >> index 000000000..0b1d1f366 >> --- /dev/null >> +++ b/support/testing/tests/package/test_python-cryptography.py > > 1) I propose to merge this file into the existing test_python.py > > The rationale is: > For the long term: > As I see, the test infra is used to detect regressions. It is important for both > the basic features and also for the complex scenarios (like the dependencies of > this package). But I don't expect to see tests added to every single package or > python package (it would take a very long time to run all those tests), so this > file probably will not grow too much and we can keep the tests together. > For the short run: > We avoid for now to deal with filenames with '-' as they can generate more > code. If for instance test_python.py was named test_python-base.py you could > not easily import it. > You clearly used the same "old" code style as in test_python.py. If you merge > the files no reviewer will ask you to fix the 7 code style warnings that > flake8 generates or to use the new indented style for configs (to follow > cf3cd4388a support/tests: allow properly indented config fragment). Of course, > if you are willing to send a 2 patch series, first adapting the current > file to the PEP8 + indented config and then adding your test, it would be great. > If not, it can be done later. I can send a code style series if people don't > disagree it is useful. > >> @@ -0,0 +1,39 @@ >> +import os >> + >> +from tests.package.test_python import TestPythonBase >> + >> +class TestPythonPy2Cryptography(TestPythonBase): >> + config = TestPythonBase.config + \ >> +""" >> +BR2_PACKAGE_PYTHON=y >> +BR2_PACKAGE_PYTHON_CRYPTOGRAPHY=y >> +""" >> + def fernet_test(self, timeout=-1): >> + """Test Fernet.""" > > This comment is not really needed. > >> + cmd = self.interpreter + " -c 'from cryptography.fernet import Fernet;" >> + cmd += "key = Fernet.generate_key();" >> + cmd += "f = Fernet(key)'" >> + _, exit_code = self.emulator.run(cmd, timeout) >> + self.assertEqual(exit_code, 0) >> + >> + def test_run(self): >> + self.login() >> + self.fernet_test(40) >> + >> +class TestPythonPy3Cryptography(TestPythonBase): >> + config = TestPythonBase.config + \ >> +""" >> +BR2_PACKAGE_PYTHON3=y >> +BR2_PACKAGE_PYTHON_CRYPTOGRAPHY=y >> +""" >> + def fernet_test(self, timeout=-1): >> + """Test Fernet.""" >> + cmd = self.interpreter + " -c 'from cryptography.fernet import Fernet;" >> + cmd += "key = Fernet.generate_key();" >> + cmd += "f = Fernet(key)'" >> + _, exit_code = self.emulator.run(cmd, timeout) >> + self.assertEqual(exit_code, 0) > > 2) to avoid duplicate code I suggest something like this: > class TestPythonCryptography(TestPythonBase): > def fernet_test(self, timeout=-1): > ... > class TestPythonPy2Cryptography(TestPythonCryptography): > config = TestPythonBase.config + \ > ... > def test_run(self): > ... > class TestPythonPy3Cryptography(TestPythonCryptography): > config = TestPythonBase.config + \ > ... > def test_run(self): > ... > >> + >> + def test_run(self): >> + self.login() >> + self.fernet_test(40) >> -- > > And also a question concerning the runtime: > > For the Python 3 test, all went well. > But for Python 2 there are some scary messages on the log > https://gitlab.com/RicardoMartincoski/buildroot/-/jobs/31298616/artifacts/download > ERROR:root:code for hash md5 was not found. > Traceback (most recent call last): > File "usr/lib/python2.7/hashlib.py", line 147, in <module> > File "usr/lib/python2.7/hashlib.py", line 97, in __get_builtin_constructor > ValueError: unsupported hash type md5 > and the same messages repeat for sha1, sha224, sha256, sha384 and sha512. > > But I run your tests using -k, then I entered the qemu using the command in the > first line of TestPythonPy2Cryptography-run.log, then I called its Python shell > and I could do this: > >>> from cryptography.fernet import Fernet > [scary messages] > >>> key = Fernet.generate_key() > >>> f = Fernet(key) > >>> token = f.encrypt(b"buildroot") > >>> token > 'gAAAAAAAAAAuQ0Tj9azF8nIU2bmXXE07WOCSm0naDpdDAOQ0KhWCR2VrxeAoaTWx8gxP_pNVGLY_hLjFuY7vFI1D2dtKh6PKrg==' > >>> f.decrypt(token) > 'buildroot' > > So I suppose the test you created is testing enough. > Could you (that knows more then me about the package) confirm it is OK to get > these messages? > > If you think testing for the output of the command is needed to determine > fail/pass, see TestNoTimezone. I didn't tested but I guess assertRegexpMatches > and assertNotRegexpMatches can be helpful. How can I perform tests for this testing framework locally? @Thomas do I see it right, that Python3 doesn't provide hashlib core property ans that this functionality is the by default compared to Python2? I've sent a patch [1] to bump python-cryptorgraphy and also to fix some dependencies. But still has an issue, that I've mentioned in the comments. I've looked at this issue and it seems to be an OpenSSL version related. OpenSSL prior 1.1.0 didn't use pthread_atfork (see crypto/threads_pthread.c in OpenSSL master branch). This is at least my suspicion. [1] http://patchwork.ozlabs.org/patch/797606/ Yegor ^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] [RFC] testing: add python-cryptography tests 2017-09-06 9:44 ` Yegor Yefremov @ 2017-09-06 11:09 ` Ricardo Martincoski 2017-09-06 11:27 ` Thomas Petazzoni 1 sibling, 0 replies; 8+ messages in thread From: Ricardo Martincoski @ 2017-09-06 11:09 UTC (permalink / raw) To: buildroot Hello, On Wednesday, September 6, 2017 6:44:17 AM, Yegor Yefremov > On Wed, Sep 6, 2017 at 4:31 AM, Ricardo Martincoski [snip] >> But I run your tests using -k, then I entered the qemu using the command in the >> first line of TestPythonPy2Cryptography-run.log, then I called its Python shell [snip] > > How can I perform tests for this testing framework locally? Run this command on the buildroot tree to see all available options: support/testing/run-tests -h -k and -s are very useful when creating/changing tests. Regards, -- Ricardo Martincoski DATACOM Ethernet Switches Rua Am?rica, 1000 - Eldorado do Sul, RS - 92990-000 - Brasil +55 51 3933 3000 - Ramal 3307 ricardo.martincoski at datacom.ind.br www.datacom.ind.br ^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] [RFC] testing: add python-cryptography tests 2017-09-06 9:44 ` Yegor Yefremov 2017-09-06 11:09 ` Ricardo Martincoski @ 2017-09-06 11:27 ` Thomas Petazzoni 1 sibling, 0 replies; 8+ messages in thread From: Thomas Petazzoni @ 2017-09-06 11:27 UTC (permalink / raw) To: buildroot Hello, On Wed, 6 Sep 2017 11:44:17 +0200, Yegor Yefremov wrote: > > So I suppose the test you created is testing enough. > > Could you (that knows more then me about the package) confirm it is OK to get > > these messages? > > > > If you think testing for the output of the command is needed to determine > > fail/pass, see TestNoTimezone. I didn't tested but I guess assertRegexpMatches > > and assertNotRegexpMatches can be helpful. > > How can I perform tests for this testing framework locally? You want to test the testing framework ? Seems weird. Perhaps you just want to run the test cases ? Quick start: ./support/testing/run-tests -l # to list the tests ./support/testing/run-tests -o /path/to/outputdir -k nameoftest # run a test case > @Thomas do I see it right, that Python3 doesn't provide hashlib core > property ans that this functionality is the by default compared to > Python2? Huh, I'm supposed to be able to answer this question ? :-) Thomas -- Thomas Petazzoni, CTO, Free Electrons Embedded Linux and Kernel engineering http://free-electrons.com ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2017-09-06 11:49 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2017-09-04 7:15 [Buildroot] [RFC] testing: add python-cryptography tests yegorslists at googlemail.com 2017-09-06 2:31 ` Ricardo Martincoski 2017-09-06 8:06 ` Thomas Petazzoni 2017-09-06 11:31 ` Ricardo Martincoski 2017-09-06 11:49 ` Thomas Petazzoni 2017-09-06 9:44 ` Yegor Yefremov 2017-09-06 11:09 ` Ricardo Martincoski 2017-09-06 11:27 ` Thomas Petazzoni
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox