diff options
author | Dalf <alex@al-f.net> | 2019-07-12 19:35:36 +0200 |
---|---|---|
committer | Dalf <alex@al-f.net> | 2019-07-13 15:49:59 +0200 |
commit | 609ac5795ab16ab8a80a89feb54a9e23d4dec725 (patch) | |
tree | 8c45d448bf6bec7665de41b5015585e7ede4ba16 /searx | |
parent | fbe40001d35ea5cf74c92f35d76c642a480a5c9f (diff) | |
download | searxng-609ac5795ab16ab8a80a89feb54a9e23d4dec725.tar.gz searxng-609ac5795ab16ab8a80a89feb54a9e23d4dec725.zip |
.travis.yml: robot tests: remove the xvfb dependency
Diffstat (limited to 'searx')
-rw-r--r-- | searx/testing.py | 2 |
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) |