We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4f37e9 commit aabba3dCopy full SHA for aabba3d
README.md
@@ -2,6 +2,33 @@
2
3
This segment is intended to be used to teach how to use the Python debugger along with Pytest.
4
5
+## Setup
6
+
7
+1. Create a virtual environment
8
9
+```bash
10
+$ python3 -m venv venv
11
+```
12
13
+2. Activate the environment
14
15
16
+$ source venv/bin/activate
17
18
19
+3. Install the dependencies
20
21
22
23
+pip install -r requirements.txt
24
25
26
+You can now run the tests with the command
27
28
29
+$ pytest
30
31
32
## FizzBuzz Function
33
34
`fizzbuzz` is a function which returns the string representation of numbers from 1 to n.
0 commit comments