From f5f809c1673f6288ff22ba759540683ba1013674 Mon Sep 17 00:00:00 2001 From: Devon Mackay Date: Tue, 10 Jul 2018 10:54:27 -0400 Subject: [PATCH] Account for new script names and forced pipenv --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 88698d19..64996466 100644 --- a/README.md +++ b/README.md @@ -19,19 +19,19 @@ Additionally, ATST requires a redis instance for session management. Have redis ## Running (development) -To start the app and watch for changes: +To start the app locally in the foreground and watch for changes: - DEBUG=1 script/server + script/dev_server ## Testing -To run unit tests: +To run all linting and tests: script/test -or +To run only the unit tests: - python -m pytest + pipenv run python -m pytest ## Notes