Pytest - wykonanie pliku

W tym rozdziale nauczymy się, jak wykonać pojedynczy plik testowy i wiele plików testowych. Mamy już plik testowytest_square.pyUtworzony. Utwórz nowy plik testowytest_compare.py z następującym kodem -

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

Teraz, aby uruchomić wszystkie testy ze wszystkich plików (tutaj 2 plików), musimy uruchomić następujące polecenie -

pytest -v

Powyższe polecenie uruchomi testy z obu test_square.py i test_compare.py. Dane wyjściowe zostaną wygenerowane w następujący sposób -

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

Aby wykonać testy z określonego pliku, użyj następującej składni -

pytest <filename> -v

Teraz uruchom następujące polecenie -

pytest test_compare.py -v

Powyższe polecenie wykona testy tylko z pliku test_compare.py. Nasz wynik będzie -

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