diff --git a/k3d/headless.py b/k3d/headless.py index 091a026d..856cb9ad 100644 --- a/k3d/headless.py +++ b/k3d/headless.py @@ -58,7 +58,7 @@ def ping(): def generate(): current_plot_params = self.k3d_plot.get_plot_params() plot_diff = {k: current_plot_params[k] for k in current_plot_params.keys() - if current_plot_params[k] != self.synced_plot[k]} + if current_plot_params[k] != self.synced_plot[k] and k != 'minimumFps'} objects_diff = {} diff --git a/k3d/test/conftest.py b/k3d/test/conftest.py index e3da27c4..0a17137c 100644 --- a/k3d/test/conftest.py +++ b/k3d/test/conftest.py @@ -29,7 +29,7 @@ def pytest_sessionstart(session): before performing collection and entering the run test loop. """ pytest.plot = k3d.plot(screenshot_scale=1.0, antialias=2, camera_auto_fit=False, - minimum_fps=-1, colorbar_object_id=0) + colorbar_object_id=0) print(pytest.plot.get_static_path()) pytest.headless = k3d_remote(pytest.plot, get_headless_driver()) pytest.headless.browser.execute_script("window.randomMul = 0.0;")