Skip to content

Commit

Permalink
feat(python): improved pytest explanation and linting of example
Browse files Browse the repository at this point in the history
  • Loading branch information
JZylber committed Aug 7, 2023
1 parent 2f08418 commit f8a9b76
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cheatsheets/python.md
Original file line number Diff line number Diff line change
Expand Up @@ -598,16 +598,16 @@ im.show()

## Pytest

Para correr pytest no se corre simplemente con python, si no que hay que correrlo a través de pytest usando el comando
```
Para correr los tests usando `pytest` no se corre simplemente con python, si no que hay que correrlo a través de pytest usando el comando
```bash
python -m pytest nombre_del_archivo_de_tests.py
```

Para construir un test alcanza con declarar una función que comience con el prefijo `test` y poner uno o más `assert` con las condiciones de pasar dicho test.

Supongamos que tengo una función `suma_dos` que toma un entero y le suma 2. Un posible test de esta función en pytest podría ser:

```
```python
def test_suma_dos():
resultado_obtenido = suma_dos(3)
resultado_esperado = 5
Expand Down

1 comment on commit f8a9b76

@vercel
Copy link

@vercel vercel bot commented on f8a9b76 Aug 7, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.