Problemas de selenio/Xvfb con Jenkins

Problemas de selenio/Xvfb con Jenkins

Estoy luchando para que Jenkins ejecute Selenium/Xvfb para algunas pruebas funcionales en un proyecto. O Jenkins se bloquea y el trabajo nunca termina o termina con errores. Esto está usando el complemento Xvfb. Aquí está uno de los rastreos más recientes:

======================================================================
ERROR: test_update_yeast_invalid_form_validation (functional_tests.test_simple_yeast_validation_form.YeastFormValidation)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/var/lib/jenkins/workspace/MyProj/functional_tests/base.py", line 29, in setUp
    self.browser = webdriver.Firefox()
  File "/var/lib/jenkins/shiningpanda/jobs/d4d78946/virtualenvs/d41d8cd9/lib/python3.6/site-packages/selenium/webdriver/firefox/webdriver.py", line 158, in __init__
    keep_alive=True)
  File "/var/lib/jenkins/shiningpanda/jobs/d4d78946/virtualenvs/d41d8cd9/lib/python3.6/site-packages/selenium/webdriver/remote/webdriver.py", line 154, in __init__
    self.start_session(desired_capabilities, browser_profile)
  File "/var/lib/jenkins/shiningpanda/jobs/d4d78946/virtualenvs/d41d8cd9/lib/python3.6/site-packages/selenium/webdriver/remote/webdriver.py", line 243, in start_session
    response = self.execute(Command.NEW_SESSION, parameters)
  File "/var/lib/jenkins/shiningpanda/jobs/d4d78946/virtualenvs/d41d8cd9/lib/python3.6/site-packages/selenium/webdriver/remote/webdriver.py", line 311, in execute
    self.error_handler.check_response(response)
  File "/var/lib/jenkins/shiningpanda/jobs/d4d78946/virtualenvs/d41d8cd9/lib/python3.6/site-packages/selenium/webdriver/remote/errorhandler.py", line 237, in check_response
    raise exception_class(message, screen, stacktrace)
selenium.common.exceptions.WebDriverException: Message: Process unexpectedly closed with status 1


----------------------------------------------------------------------
Ran 25 tests in 33.513s

FAILED (errors=19, skipped=6)
Creating test database for alias 'default'...
System check identified no issues (0 silenced).
Destroying test database for alias 'default'...
Build step 'Virtualenv Builder' marked build as failure
Xvfb stopping
unlink: No such file or directory
unlink /var/lib/jenkins/xvfb-30-..fbdir854052494809466199/Xvfb_screen0 failed, Invalid argumentFinished: FAILURE

Esto puede estar relacionado con un problema en el que Xvfb se está ejecutando aunque terminé el trabajo. Aquí están mis configuraciones:

Inicie Xvfb antes de la compilación y apáguelo después = marcado Nombre para mostrar específico de Xvfb = 99 Tiempo de espera en segundos = 10 Desplazamiento del nombre para mostrar de Xvfb = 0 Salida de registro de Xvfb = marcado

Intenté usar el complemento de inyección de variables de entorno para agregar la siguiente var de entorno: DISPLAY=:99.0

Intenté buscar registros pero no pude encontrar nada en Google para una ubicación de registro. ¿Alguien podría ayudarme a indicarme la dirección correcta?

información relacionada