You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+14-8
Original file line number
Diff line number
Diff line change
@@ -23,20 +23,26 @@ If you feel this book is for you, get your [copy](https://www.amazon.com/dp/1788
23
23
alt="https://www.packtpub.com/" border="5" /></a>
24
24
25
25
## Instructions and Navigations
26
-
Create a virtual environment, and once activated run the following command:
26
+
Create a virtual environment, and once activated run::
27
27
28
-
make setup
28
+
make setup
29
29
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.
31
33
32
-
Inside each chapter directory, tests can be run as:
34
+
Each chapter has its corresponding directory given by its number.
33
35
34
-
make test
36
+
Inside each chapter directory, tests can be run by::
35
37
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
37
39
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
40
46
41
47
All of the code is organized into folders. For example, Chapter02.
0 commit comments