Use the buffer engine for elm tests

This should make tests work also on jenkins
This commit is contained in:
Davide Andreoli 2017-07-22 11:35:28 +02:00
parent 3ef64e685c
commit 74ed9e86a4
5 changed files with 15 additions and 1 deletions

View File

@ -1,5 +1,8 @@
#!/usr/bin/env python
import os
os.environ["ELM_ENGINE"] = "buffer"
import unittest
import logging

View File

@ -1,6 +1,8 @@
#!/usr/bin/env python
import os
os.environ["ELM_ENGINE"] = "buffer"
import unittest
import logging

View File

@ -1,6 +1,9 @@
#!/usr/bin/env python
# encoding: utf-8
import os
os.environ["ELM_ENGINE"] = "buffer"
import unittest
import logging

View File

@ -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

View File

@ -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