(request, dash_thread_server, tmpdir)
| 661 | |
| 662 | @pytest.fixture |
| 663 | def test(request, dash_thread_server, tmpdir): |
| 664 | with DataTableComposite( |
| 665 | dash_thread_server, |
| 666 | browser=request.config.getoption("webdriver"), |
| 667 | remote=request.config.getoption("remote"), |
| 668 | remote_url=request.config.getoption("remote_url"), |
| 669 | headless=request.config.getoption("headless"), |
| 670 | options=request.config.hook.pytest_setup_options(), |
| 671 | download_path=tmpdir.mkdir("dt-download").strpath, |
| 672 | percy_finalize=request.config.getoption("nopercyfinalize"), |
| 673 | pause=request.config.getoption("pause"), |
| 674 | ) as dc: |
| 675 | yield dc |
no test coverage detected
searching dependent graphs…