Lokasi ngalangkungan proxy:   [ UP ]  
[Ngawartoskeun bug]   [Panyetelan cookie]                
Skip to content

Commit ef5beff

Browse files
puzankytrinyx
authored andcommitted
Fix py.test run in documentation (exercism#334)
Just add '\n' between `cd` and `py.test` commands
1 parent 4e4f1e5 commit ef5beff

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

docs/TESTS.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,15 +70,17 @@ py.test --ff bob_test.py
7070
### Running All Tests for All Exercises
7171

7272
```bash
73-
cd exercism/python/ py.test
73+
cd exercism/python/
74+
py.test
7475
```
7576

7677
## Recommended Workflow
7778

7879
We recommend you run this command while working on exercises.
7980

8081
```bash
81-
cd exercism/python/bob py.test -x --ff bob_test.py
82+
cd exercism/python/bob
83+
py.test -x --ff bob_test.py
8284
```
8385

8486
## PDB

0 commit comments

Comments
 (0)