From e8b547bfc341ff5b13198528010d93ae8ef75f55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20B=C5=93sch?= Date: Mon, 25 Mar 2024 13:23:41 +0100 Subject: [PATCH] tests: rename tests.debug to tests.cuepoints_utils --- .../pynopegl_utils/tests/{debug.py => cuepoints_utils.py} | 0 pynopegl-utils/pynopegl_utils/tests/data.py | 2 +- tests/blending.py | 2 +- tests/compute.py | 2 +- tests/data.py | 2 +- tests/live.py | 2 +- tests/texture.py | 2 +- 7 files changed, 6 insertions(+), 6 deletions(-) rename pynopegl-utils/pynopegl_utils/tests/{debug.py => cuepoints_utils.py} (100%) diff --git a/pynopegl-utils/pynopegl_utils/tests/debug.py b/pynopegl-utils/pynopegl_utils/tests/cuepoints_utils.py similarity index 100% rename from pynopegl-utils/pynopegl_utils/tests/debug.py rename to pynopegl-utils/pynopegl_utils/tests/cuepoints_utils.py diff --git a/pynopegl-utils/pynopegl_utils/tests/data.py b/pynopegl-utils/pynopegl_utils/tests/data.py index 21901f89f..081710747 100644 --- a/pynopegl-utils/pynopegl_utils/tests/data.py +++ b/pynopegl-utils/pynopegl_utils/tests/data.py @@ -22,7 +22,7 @@ import colorsys import random -from pynopegl_utils.tests.debug import get_debug_points +from pynopegl_utils.tests.cuepoints_utils import get_debug_points import pynopegl as ngl diff --git a/tests/blending.py b/tests/blending.py index 654f8b6ee..e2f3f0589 100644 --- a/tests/blending.py +++ b/tests/blending.py @@ -23,7 +23,7 @@ from typing import Mapping, Tuple from pynopegl_utils.tests.cmp_cuepoints import test_cuepoints -from pynopegl_utils.tests.debug import get_debug_points +from pynopegl_utils.tests.cuepoints_utils import get_debug_points from pynopegl_utils.toolbox.colors import COLORS from pynopegl_utils.toolbox.grid import AutoGrid, autogrid_queue, autogrid_simple diff --git a/tests/compute.py b/tests/compute.py index f428a4d31..73002b084 100644 --- a/tests/compute.py +++ b/tests/compute.py @@ -25,7 +25,7 @@ from pynopegl_utils.misc import get_shader from pynopegl_utils.tests.cmp_cuepoints import test_cuepoints from pynopegl_utils.tests.cmp_fingerprint import test_fingerprint -from pynopegl_utils.tests.debug import get_debug_points, get_grid_points +from pynopegl_utils.tests.cuepoints_utils import get_debug_points, get_grid_points from pynopegl_utils.toolbox.colors import COLORS import pynopegl as ngl diff --git a/tests/data.py b/tests/data.py index 8716fa21d..05080e525 100644 --- a/tests/data.py +++ b/tests/data.py @@ -24,6 +24,7 @@ from pynopegl_utils.tests.cmp_cuepoints import test_cuepoints from pynopegl_utils.tests.cmp_fingerprint import test_fingerprint +from pynopegl_utils.tests.cuepoints_utils import get_debug_points, get_grid_points from pynopegl_utils.tests.data import ( ANIM_DURATION, LAYOUTS, @@ -33,7 +34,6 @@ get_field_scene, match_fields, ) -from pynopegl_utils.tests.debug import get_debug_points, get_grid_points from pynopegl_utils.toolbox.colors import COLORS import pynopegl as ngl diff --git a/tests/live.py b/tests/live.py index 44f81bf74..2a81a3a5c 100644 --- a/tests/live.py +++ b/tests/live.py @@ -23,6 +23,7 @@ from pynopegl_utils.misc import load_media from pynopegl_utils.tests.cmp_cuepoints import test_cuepoints +from pynopegl_utils.tests.cuepoints_utils import get_debug_points from pynopegl_utils.tests.data import ( LAYOUTS, gen_floats, @@ -31,7 +32,6 @@ get_field_scene, match_fields, ) -from pynopegl_utils.tests.debug import get_debug_points from pynopegl_utils.toolbox.colors import COLORS import pynopegl as ngl diff --git a/tests/texture.py b/tests/texture.py index 58e482401..44bebe8a8 100644 --- a/tests/texture.py +++ b/tests/texture.py @@ -26,7 +26,7 @@ from pynopegl_utils.misc import get_shader, load_media from pynopegl_utils.tests.cmp_cuepoints import test_cuepoints from pynopegl_utils.tests.cmp_fingerprint import test_fingerprint -from pynopegl_utils.tests.debug import get_debug_points, get_grid_points +from pynopegl_utils.tests.cuepoints_utils import get_debug_points, get_grid_points from pynopegl_utils.toolbox.colors import COLORS, get_random_color_buffer import pynopegl as ngl