From 6a3d0f0f1e6b944e471d5479e37375b8a832dc39 Mon Sep 17 00:00:00 2001 From: Vivek Anand Date: Aug 14 2017 06:00:03 +0000 Subject: Readme: Add note for eventlet installtion We use /usr/bin/celery for testing which uses eventlet outside of venv. Thus, in order to run the tests successfully, we need to install eventlet outside of ven Signed-off-by: Vivek Anand --- diff --git a/README.rst b/README.rst index 1757857..e2934fd 100644 --- a/README.rst +++ b/README.rst @@ -131,3 +131,8 @@ This will launch the application at http://127.0.0.1:5000 * Run it:: ./runtests.sh + + .. note:: While testing for worker tasks, pagure uses celery in /usr/bin/ + Celery then looks for eventlet (which we use for testing only) at + system level and not in virtualenv. You will need to install eventlet + outside of your virtualenv if you are using one.