8000 Update README.md · e1teck/Clean-Code-in-Python@0141ea1 · GitHub
[go: up one dir, main page]

Skip to content

Commit 0141ea1

Browse files
authored
Update README.md
1 parent d7156c0 commit 0141ea1

File tree

1 file changed

+14
-8
lines changed

1 file changed

+14
-8
lines changed

README.md

+14-8
Original file line numberDiff line numberDiff line change
@@ -23,20 +23,26 @@ If you feel this book is for you, get your [copy](https://www.amazon.com/dp/1788
2323
alt="https://www.packtpub.com/" border="5" /></a>
2424

2525
## Instructions and Navigations
26-
Create a virtual environment, and once activated run the following command:
26+
Create a virtual environment, and once activated run::
2727

28-
make setup
28+
make setup
2929

30-
This will install the common dependencies. Besides this, each chapter might have additional ones, for which another make setup will have to be run inside that particular directory. Each chapter has its corresponding directory given by its number.
30+
This will install the common dependencies. Besides this, each chapter might
31+
have additional ones, for which another ``make setup`` will have to be run
32+
inside that particular directory.
3133

32-
Inside each chapter directory, tests can be run as:
34+
Each chapter has its corresponding directory given by its number.
3335

34-
make test
36+
Inside each chapter directory, tests can be run by::
3537

36-
This requires the make application installed (in Unix environments). In environments without access to the make command, the same code can be tested by running the commands on the Makefile:
38+
make test
3739

38-
python -m doctest *.py
39-
python -m unittest *.py
40+
This requires the ``make`` application installed (in Unix environments).
41+
In environments without access to the ``make`` command, the same code can be
42+
tested by running the commands on the ``Makefile``::
43+
44+
python -m doctest *.py
45+
python -m unittest *.py
4046

4147
All of the code is organized into folders. For example, Chapter02.
4248

0 commit comments

Comments
 (0)
0