summaryrefslogtreecommitdiff
path: root/searx
diff options
context:
space:
mode:
authorDalf <alex@al-f.net>2019-07-12 19:35:36 +0200
committerDalf <alex@al-f.net>2019-07-13 15:49:59 +0200
commit609ac5795ab16ab8a80a89feb54a9e23d4dec725 (patch)
tree8c45d448bf6bec7665de41b5015585e7ede4ba16 /searx
parentfbe40001d35ea5cf74c92f35d76c642a480a5c9f (diff)
downloadsearxng-609ac5795ab16ab8a80a89feb54a9e23d4dec725.tar.gz
searxng-609ac5795ab16ab8a80a89feb54a9e23d4dec725.zip
.travis.yml: robot tests: remove the xvfb dependency
Diffstat (limited to 'searx')
-rw-r--r--searx/testing.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/testing.py b/searx/testing.py
index 647c236fd..08a53e3f4 100644
--- a/searx/testing.py
+++ b/searx/testing.py
@@ -71,7 +71,7 @@ class SearxRobotLayer():
def run_robot_tests(tests):
print('Running {0} tests'.format(len(tests)))
for test in tests:
- with Browser() as browser:
+ with Browser('firefox', headless=True) as browser:
test(browser)