Pytest - Exécution de fichiers

Dans ce chapitre, nous allons apprendre à exécuter un seul fichier de test et plusieurs fichiers de test. Nous avons déjà un fichier de testtest_square.pyétabli. Créer un nouveau fichier de testtest_compare.py avec le code suivant -

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

Maintenant, pour exécuter tous les tests à partir de tous les fichiers (2 fichiers ici), nous devons exécuter la commande suivante -

pytest -v

La commande ci-dessus exécutera des tests à la fois test_square.py et test_compare.py. La sortie sera générée comme suit -

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 
===================================

Pour exécuter les tests à partir d'un fichier spécifique, utilisez la syntaxe suivante -

pytest <filename> -v

Maintenant, exécutez la commande suivante -

pytest test_compare.py -v

La commande ci-dessus exécutera les tests uniquement à partir du fichier test_compare.py. Notre résultat sera -

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 
=================================