From ff340ef5658d715af422cf897329cb69ba4f47be Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Tue, 31 Jan 2017 17:14:17 -0500 Subject: [PATCH] cleanup makefile section --- docs/advanced.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/advanced.rst b/docs/advanced.rst index 0319a493..fbbcdf51 100644 --- a/docs/advanced.rst +++ b/docs/advanced.rst @@ -84,12 +84,12 @@ a stripped down example ``.travis.yml``:: and the corresponding Makefile:: init: - pip install pipenv - pipenv lock - pipenv install --dev + pip install pipenv + pipenv lock + pipenv install --dev test: - pipenv run py.test tests + pipenv run py.test tests ``$ pipenv lock`` needs to be run here, because Python 2 will generate a different lockfile than Python 3.