Merge branch 'master' into bang_fixes

This commit is contained in:
Alexandre Flament 2019-07-06 18:48:03 +02:00 committed by GitHub
commit 3b8b862d8c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 14 additions and 4 deletions

View file

@ -39,3 +39,11 @@ engines:
locales:
en : English
hu : Magyar
doi_resolvers :
oadoi.org : 'https://oadoi.org/'
doi.org : 'https://doi.org/'
doai.io : 'http://doai.io/'
sci-hub.tw : 'http://sci-hub.tw/'
default_doi_resolver : 'oadoi.org'

View file

@ -6,7 +6,6 @@ import os
import subprocess
import traceback
from os.path import dirname, join, abspath
from splinter import Browser
@ -49,6 +48,7 @@ class SearxRobotLayer():
exe = 'python'
# set robot settings path
os.environ['SEARX_DEBUG'] = '1'
os.environ['SEARX_SETTINGS_PATH'] = abspath(
dirname(__file__) + '/settings_robot.yml')
@ -58,6 +58,8 @@ class SearxRobotLayer():
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT
)
if hasattr(self.server.stdout, 'read1'):
print(self.server.stdout.read1(1024).decode('utf-8'))
def tearDown(self):
os.kill(self.server.pid, 9)