Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/jimcostdev/unit-testing
- Owner: JimcostDev
- Created: 2024-11-14T13:37:23.000Z (about 2 months ago)
- Default Branch: master
- Last Pushed: 2024-11-14T14:33:02.000Z (about 2 months ago)
- Last Synced: 2024-11-14T14:38:18.551Z (about 2 months ago)
- Language: Python
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
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
```