Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jimcostdev/unit-testing

Este repositorio contiene ejemplos y notas personales sobre el uso de pytest para realizar pruebas unitarias en Python.
https://github.com/jimcostdev/unit-testing

Last synced: 9 days ago
JSON representation

Este repositorio contiene ejemplos y notas personales sobre el uso de pytest para realizar pruebas unitarias en Python.

Awesome Lists containing this project

README

        

# Python Testing with Pytest: Ejemplos y Notas Personales

Este repositorio contiene ejemplos y notas personales sobre el uso de **pytest** para realizar pruebas unitarias en Python. El propósito principal de este repositorio es ayudarme a aprender sobre pruebas, estructuras de código y las herramientas relacionadas, de una forma simple y directa. Los ejemplos están diseñados para cubrir diferentes tipos de aserciones, manejo de excepciones, y otras características útiles de **pytest**.

## Requisitos

Para instalar `pytest`, puedes usar el siguiente comando:

```bash
pip install pytest
```

## Ejecutar Tests
```bash
pytest nombre_test.py -v
```