import pytest def test_simple(): """Simple test to verify pytest is working""" assert True def test_another(): """Another simple test""" assert 1 + 1 == 2