From 11f8c87f4a727ca760826f88d6582fb0f7261885 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Behmo?= Date: Sat, 19 Oct 2019 18:28:59 +0200 Subject: [PATCH] Make sure tutor-openedx is installed as part of requirements Otherwise, tutor-openedx will be pulled from pypi during plugin install. This was failing because the latest pypi release was not installing correctly (see #261). --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 226ead8..197037e 100644 --- a/Makefile +++ b/Makefile @@ -66,6 +66,7 @@ ci-install-alpine-requirements: ## Install requirements for a python:alpine imag ci-install-python-requirements: ## Install requirements pip3 install -U setuptools pip + python3 setup.py install pip3 install -r requirements/dev.txt ci-install-plugins: ci-install-python-requirements ## Install alll supported plugins