Pytest - execução de arquivo

Neste capítulo, aprenderemos como executar um único arquivo de teste e vários arquivos de teste. Já temos um arquivo de testetest_square.pycriada. Crie um novo arquivo de testetest_compare.py com o seguinte 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

Agora, para executar todos os testes de todos os arquivos (2 arquivos aqui), precisamos executar o seguinte comando -

pytest -v

O comando acima irá executar testes de ambos test_square.py e test_compare.py. A saída será gerada da seguinte forma -

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 executar os testes de um arquivo específico, use a seguinte sintaxe -

pytest <filename> -v

Agora, execute o seguinte comando -

pytest test_compare.py -v

O comando acima irá executar os testes apenas a partir do arquivo test_compare.py. Nosso 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 
=================================