davemds pushed a commit to branch master. http://git.enlightenment.org/bindings/python/python-efl.git/commit/?id=74ed9e86a48a3375c316c359e4305500890cb206
commit 74ed9e86a48a3375c316c359e4305500890cb206 Author: Dave Andreoli <d...@gurumeditation.it> Date: Sat Jul 22 11:35:28 2017 +0200 Use the buffer engine for elm tests This should make tests work also on jenkins --- tests/elementary/test_01_basics.py | 3 +++ tests/elementary/test_02_image_icon.py | 2 ++ tests/elementary/test_03_entry.py | 3 +++ tests/elementary/test_04_external.py | 5 ++++- tests/eo/test_02_class_names.py | 3 +++ 5 files changed, 15 insertions(+), 1 deletion(-) diff --git a/tests/elementary/test_01_basics.py b/tests/elementary/test_01_basics.py index ce7fcb7..edd809b 100644 --- a/tests/elementary/test_01_basics.py +++ b/tests/elementary/test_01_basics.py @@ -1,5 +1,8 @@ #!/usr/bin/env python +import os +os.environ["ELM_ENGINE"] = "buffer" + import unittest import logging diff --git a/tests/elementary/test_02_image_icon.py b/tests/elementary/test_02_image_icon.py index d898124..cc0b48a 100644 --- a/tests/elementary/test_02_image_icon.py +++ b/tests/elementary/test_02_image_icon.py @@ -1,6 +1,8 @@ #!/usr/bin/env python import os +os.environ["ELM_ENGINE"] = "buffer" + import unittest import logging diff --git a/tests/elementary/test_03_entry.py b/tests/elementary/test_03_entry.py index 3784639..2b8e48a 100644 --- a/tests/elementary/test_03_entry.py +++ b/tests/elementary/test_03_entry.py @@ -1,6 +1,9 @@ #!/usr/bin/env python # encoding: utf-8 +import os +os.environ["ELM_ENGINE"] = "buffer" + import unittest import logging diff --git a/tests/elementary/test_04_external.py b/tests/elementary/test_04_external.py index 3890514..74e1c9f 100644 --- a/tests/elementary/test_04_external.py +++ b/tests/elementary/test_04_external.py @@ -1,6 +1,9 @@ #!/usr/bin/env python -import os, unittest +import os +os.environ["ELM_ENGINE"] = "buffer" + +import unittest import logging from efl import evas diff --git a/tests/eo/test_02_class_names.py b/tests/eo/test_02_class_names.py index 9f5fbfd..e3354f2 100644 --- a/tests/eo/test_02_class_names.py +++ b/tests/eo/test_02_class_names.py @@ -1,5 +1,8 @@ #!/usr/bin/env python +import os +os.environ["ELM_ENGINE"] = "buffer" + from efl import evas from efl import edje from efl import emotion --