PyTest - Test Organization
This fixture in
Tests fail with
conftest.py aims to provide a database connection:import pytest
@pytest.fixture
def db_conn():
conn = connect_db()
yield conn
conn.close()Tests fail with
NameError: name 'connect_db' is not defined. How can you fix this?