import pytest class TestMain: def test_example_1(self): """ A basic test example """ assert 3 == 1 + 2 if __name__ == "__main__": pytest.main([__file__])