Skip to content

Commit

Permalink
feat: adiciona a opção de instalação com o Poetry
Browse files Browse the repository at this point in the history
  • Loading branch information
joao-vitor-souza authored and HenriqueAJNB committed Nov 30, 2022
1 parent f6e2244 commit e96d46a
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 0 deletions.
6 changes: 6 additions & 0 deletions book/cap02-estrutura_projeto/sec2-1-introducao.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,12 @@ Para fazer download do template, comece instalando o [cookiecutter](https://gith
pip install cookiecutter
```

Se estiver usando o Poetry, então digite:

```bash
poetry add cookiecutter
```

Crie um projeto baseado no template:

```bash
Expand Down
2 changes: 2 additions & 0 deletions book/cap03-testes_unitarios/sec3-2-dicas_pytest.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ Para repetir um determinado teste, instale `pytest-repeat`:

```bash
$ pip install pytest-repeat
$ poetry add pytest-repeat
```

Agora podemos usar `pytest.mark.repeat(100)` como um decorador no teste que gostaríamos de repetir.
Expand Down Expand Up @@ -188,6 +189,7 @@ Vamos instalar o `pytest-benchmark`:

```bash
$ pip install pytest-benchmark
$ poetry add pytest-benchmark
```

Vamos usar o exemplo deste artigo, escrito em inglês pela autora original do livro, sobre [performance em código Python](https://towardsdatascience.com/timing-the-performance-to-choose-the-right-python-object-for-your-data-science-project-670db6f11b8e) para mostrar como podemos usar o `pytest-benchmark`.
Expand Down
7 changes: 7 additions & 0 deletions book/cap04-testando_dados/sec4-1-great_expectations.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,13 @@ Para instalar o Great Expectations, rode:
```bash
pip install great_expectations
```

Se estiver usando o Poetry, então digite:

```bash
poetry add great_expectations
```

### Primeiros passos

#### Criando um contexto de dados (Data Context)
Expand Down
7 changes: 7 additions & 0 deletions book/cap04-testando_dados/sec4-2-pandera.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@ Para instalar o Pandera, digite:
pip install pandera
```

Se estiver usando o Poetry, então digite:

```bash
poetry add pandera
```

### Introdução

Para aprender como o Pandera funciona, vamos começar criando um simples conjunto de dados:
Expand Down Expand Up @@ -389,6 +395,7 @@ Para utilizar as funções de leitura e escrita do Pandera é necessário instal
```bash
pip install pandera[io]
poetry add pandera[io]
```
```
Expand Down

0 comments on commit e96d46a

Please sign in to comment.