[![Review Assignment Due Date](https://classroom.github.com/assets/deadline-readme-button-24ddc0f5d75046c5622901739e7c5dd533143b0c8e959d652212380cedb1ea36.svg)](https://classroom.github.com/a/EB7yh-Hm)
# cd_chat_server

This is a template repository for Computação Distribuida assignment 1

## How to execute tests locally

- Install requirements
```bash
$ pip install -r requirements.txt
```
- Run tests:
```bash
$ pytest
```

### Creating a virtual environment

In order not to pollute your system, create (and use) a virtual environment

```bash
$ python3 -m venv venv
$ source venv/bin/activate
```

Only now should you run `pip install`

(Remember to activate the environment everytime you start a new session)
