From: Waldemar Kozaczuk <[email protected]> Committer: Waldemar Kozaczuk <[email protected]> Branch: master
tests: do not include java tests for aarch64 Signed-off-by: Waldemar Kozaczuk <[email protected]> --- diff --git a/modules/tests/module.py b/modules/tests/module.py --- a/modules/tests/module.py +++ b/modules/tests/module.py @@ -1,4 +1,6 @@ from osv.modules import api +import os -api.require('java-tests') +if os.getenv('ARCH') == 'x64': + api.require('java-tests') api.require('dl_tests') -- You received this message because you are subscribed to the Google Groups "OSv Development" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/osv-dev/00000000000034e50405aafa9749%40google.com.
