(sqlite_str, iris_path)
| 773 | |
| 774 | @pytest.fixture |
| 775 | def sqlite_str_iris(sqlite_str, iris_path): |
| 776 | sqlalchemy = pytest.importorskip("sqlalchemy") |
| 777 | engine = sqlalchemy.create_engine(sqlite_str) |
| 778 | create_and_load_iris(engine, iris_path) |
| 779 | create_and_load_iris_view(engine) |
| 780 | engine.dispose() |
| 781 | return sqlite_str |
| 782 | |
| 783 | |
| 784 | @pytest.fixture |
nothing calls this directly
no test coverage detected