From 492aa119889fa0ee457680525d5091dfbd7492e8 Mon Sep 17 00:00:00 2001 From: Ilya Zonov Date: Thu, 5 May 2016 22:55:20 +0400 Subject: [PATCH] Fix py.test run in documentation Just add '\n' between `cd` and `py.test` commands --- docs/TESTS.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/TESTS.md b/docs/TESTS.md index 8025494ddbb..53ea9ddf3fc 100644 --- a/docs/TESTS.md +++ b/docs/TESTS.md @@ -70,7 +70,8 @@ py.test --ff bob_test.py ### Running All Tests for All Exercises ```bash -cd exercism/python/ py.test +cd exercism/python/ +py.test ``` ## Recommended Workflow @@ -78,7 +79,8 @@ cd exercism/python/ py.test We recommend you run this command while working on exercises. ```bash -cd exercism/python/bob py.test -x --ff bob_test.py +cd exercism/python/bob +py.test -x --ff bob_test.py ``` ## PDB