(custom_topic_model, documents)
| 113 | |
| 114 | @pytest.fixture(scope="session") |
| 115 | def reduced_topic_model(custom_topic_model, documents): |
| 116 | model = copy.deepcopy(custom_topic_model) |
| 117 | model.reduce_topics(documents, nr_topics="auto") |
| 118 | return model |
| 119 | |
| 120 | |
| 121 | @pytest.fixture(scope="session") |
nothing calls this directly
no test coverage detected