From 86371985786d9c553d7c17c8fe4c84fd320ff4d4 Mon Sep 17 00:00:00 2001 From: Renzo Lucioni Date: Mon, 29 Feb 2016 14:00:25 -0500 Subject: [PATCH] Document use of --disable-migrations flag --- docs/en_us/internal/testing.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/en_us/internal/testing.rst b/docs/en_us/internal/testing.rst index 250ad4292b..435b91059b 100644 --- a/docs/en_us/internal/testing.rst +++ b/docs/en_us/internal/testing.rst @@ -167,6 +167,12 @@ To run these tests without ``collectstatic``, which is faster, append the follow paver test_system -s lms --fasttest +For even more speed, use the ``--disable-migrations`` option to run tests without applying migrations and instead create tables directly from apps' models. + +:: + + paver test_system -s lms --disable-migrations + To run cms python tests without ``collectstatic`` use this command. ::