Skip to content

Commit

Permalink
update README with setup
Browse files Browse the repository at this point in the history
  • Loading branch information
CheezItMan committed Mar 5, 2021
1 parent d4f37e9 commit aabba3d
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,33 @@

This segment is intended to be used to teach how to use the Python debugger along with Pytest.

## Setup

1. Create a virtual environment

```bash
$ python3 -m venv venv
```

2. Activate the environment

```bash
$ source venv/bin/activate
```

3. Install the dependencies


```bash
pip install -r requirements.txt
```

You can now run the tests with the command

```bash
$ pytest
```

## FizzBuzz Function

`fizzbuzz` is a function which returns the string representation of numbers from 1 to n.
Expand Down

0 comments on commit aabba3d

Please sign in to comment.