From 0b6a2ed4c2f27fb0525194837d88966d0eb54069 Mon Sep 17 00:00:00 2001 From: Dan Callaghan Date: May 02 2018 04:13:56 +0000 Subject: tests: use gunicorn-3 executable name The incorrect python3-gunicorn executable name remains for now, but we need to use gunicorn-3 on Fedora 29+. See: https://bugzilla.redhat.com/show_bug.cgi?id=1567198 --- diff --git a/functional-tests/conftest.py b/functional-tests/conftest.py index 0607c08..14dba44 100644 --- a/functional-tests/conftest.py +++ b/functional-tests/conftest.py @@ -112,7 +112,7 @@ def waiverdb_server(tmpdir_factory): 'db', 'upgrade'], env=env) # Start server - p = subprocess.Popen(['python3-gunicorn', + p = subprocess.Popen(['gunicorn-3', '--bind=127.0.0.1:5004', '--access-logfile=-', 'waiverdb.wsgi:app'],