"""Configuration for functional tests.""" import pytest @pytest.fixture(autouse=True) def fresh_db(fresh_db): """Automatically clear the db between tests in this folder.""" # This overrides the fresh_db fixture defined in the root conftest.py # and forces it to run for every test in this directory. pass