Pytest - Ejecución de archivos

En este capítulo, aprenderemos cómo ejecutar un solo archivo de prueba y varios archivos de prueba. Ya tenemos un archivo de pruebatest_square.pycreado. Crea un nuevo archivo de pruebatest_compare.py con el siguiente código -

def test_greater():
   num = 100
   assert num > 100

def test_greater_equal():
   num = 100
   assert num >= 100

def test_less():
   num = 100
   assert num < 200

Ahora, para ejecutar todas las pruebas de todos los archivos (2 archivos aquí), necesitamos ejecutar el siguiente comando:

pytest -v

El comando anterior ejecutará pruebas de ambos test_square.py y test_compare.py. La salida se generará de la siguiente manera:

test_compare.py::test_greater FAILED
test_compare.py::test_greater_equal PASSED
test_compare.py::test_less PASSED
test_square.py::test_sqrt PASSED
test_square.py::testsquare FAILED
================================================ FAILURES 
================================================
______________________________________________ test_greater 
______________________________________________
   def test_greater():
   num = 100
>  assert num > 100
E  assert 100 > 100

test_compare.py:3: AssertionError
_______________________________________________ testsquare 
_______________________________________________
   def testsquare():
   num = 7
>  assert 7*7 == 40
E  assert (7 * 7) == 40

test_square.py:9: AssertionError
=================================== 2 failed, 3 passed in 0.07 seconds 
===================================

Para ejecutar las pruebas desde un archivo específico, use la siguiente sintaxis:

pytest <filename> -v

Ahora, ejecute el siguiente comando:

pytest test_compare.py -v

El comando anterior ejecutará las pruebas solo desde el archivo test_compare.py. Nuestro resultado será:

test_compare.py::test_greater FAILED
test_compare.py::test_greater_equal PASSED
test_compare.py::test_less PASSED
============================================== FAILURES 
==============================================
____________________________________________ test_greater 
____________________________________________
   def test_greater():
   num = 100
>  assert num > 100
E  assert 100 > 100
test_compare.py:3: AssertionError
================================= 1 failed, 2 passed in 0.04 seconds 
=================================