diff --git a/tests/conftest.py b/tests/conftest.py index c07ad705c1..e8e119d6f5 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,30 +1,5 @@ -from manim import config import pytest -import numpy as np -import os import sys -import logging - - -def pytest_addoption(parser): - parser.addoption("--skip_end_to_end", action="store_true", default=False, - help="Will skip all the end-to-end tests. Useful when ffmpeg is not installed, e.g. on Windows jobs.") - - -def pytest_configure(config): - config.addinivalue_line( - "markers", "skip_end_to_end: mark test as end_to_end test") - - -def pytest_collection_modifyitems(config, items): - if not config.getoption("--skip_end_to_end"): - return - else: - skip_end_to_end = pytest.mark.skip( - reason="End to end test skipped due to --skip_end_to_end flag") - for item in items: - if "skip_end_to_end" in item.keywords: - item.add_marker(skip_end_to_end) @pytest.fixture(scope="module") diff --git a/tests/manim.cfg b/tests/manim.cfg deleted file mode 100644 index ee0cd43aa9..0000000000 --- a/tests/manim.cfg +++ /dev/null @@ -1,14 +0,0 @@ -[CLI] -frame_rate = 15 -pixel_height = 480 -pixel_width = 854 -from_at_animation_number = 0 -upto_at_animation_number = -1 -png_mode = RGB -movie_file_extension = .mp4 -write_to_movie = False -write_all = False -save_last_frame = False -save_pngs = False -save_as_gif = False -leave_progress_bars = False diff --git a/tests/test_cli/test_cli.py b/tests/test_cli.py similarity index 77% rename from tests/test_cli/test_cli.py rename to tests/test_cli.py index da850a1479..bacc60a90b 100644 --- a/tests/test_cli/test_cli.py +++ b/tests/test_cli.py @@ -15,31 +15,29 @@ def capture(command): def test_help(python_version): command = [python_version, "-m", "manim", "--help"] - out, err, exitcode = capture(command) + _, err, exitcode = capture(command) assert exitcode == 0, f"Manim has been installed incorrectly. Please refer to the troubleshooting section on the wiki. Error:\n{err}" -@pytest.mark.skip_end_to_end def test_basicScene(python_version): """ Simulate SquareToCircle. The cache will be saved in tests_caches/media_temp (temporary directory). This is mainly intended to test the partial-movies process. """ - path_basic_scene = os.path.join("tests_data", "basic_scenes.py") - path_output = os.path.join("tests_cache", "media_temp") + path_basic_scene = os.path.join("tests", "tests_data", "basic_scenes.py") + path_output = os.path.join("tests", "tests_cache", "media_temp") command = [python_version, "-m", "manim", path_basic_scene, "SquareToCircle", "-l", "--media_dir", path_output] - out, err, exitcode = capture(command) + _, err, exitcode = capture(command) assert exitcode == 0, err assert os.path.exists(os.path.join( path_output, "videos", "basic_scenes", "480p15", "SquareToCircle.mp4")), err rmtree(path_output) -@pytest.mark.skip_end_to_end def test_WriteStuff(python_version): """This is mainly intended to test the caching process of the tex objects""" - path_basic_scene = os.path.join("tests_data", "basic_scenes.py") - path_output = os.path.join("tests_cache", "media_temp") + path_basic_scene = os.path.join("tests", "tests_data", "basic_scenes.py") + path_output = os.path.join("tests", "tests_cache", "media_temp") command = [python_version, "-m", "manim", path_basic_scene, "WriteStuff", "-l", "--media_dir", path_output] - out, err, exitcode = capture(command) + _, err, exitcode = capture(command) assert exitcode == 0, err assert os.path.exists(os.path.join( path_output, "videos", "basic_scenes", "480p15", "WriteStuff.mp4")), err diff --git a/tests/test_cli/manim.cfg b/tests/test_cli/manim.cfg deleted file mode 100644 index b71cfe2352..0000000000 --- a/tests/test_cli/manim.cfg +++ /dev/null @@ -1,6 +0,0 @@ -[CLI] -movie_file_extension = .mp4 -write_to_movie = True -# write_all = False -save_last_frame = True -# save_pngs = False diff --git a/tests/test_creation.py b/tests/test_creation.py deleted file mode 100644 index 0745b2139a..0000000000 --- a/tests/test_creation.py +++ /dev/null @@ -1,93 +0,0 @@ -from manim import * -from testing_utils import utils_test_scenes, get_scenes_to_test - - -class ShowCreationTest(Scene): - def construct(self): - square = Square() - self.play(ShowCreation(square)) - - -class UncreateTest(Scene): - def construct(self): - square = Square() - self.add(square) - self.play(Uncreate(square)) - - -class DrawBorderThenFillTest(Scene): - def construct(self): - square = Square(fill_opacity=1) - self.play(DrawBorderThenFill(square)) - - -# NOTE : Here should be the Write Test. But for some reasons it appears that this function is untestable (see issue #157) - -class FadeOutTest(Scene): - def construct(self): - square = Square() - self.add(square) - self.play(FadeOut(square)) - - -class FadeInTest(Scene): - def construct(self): - square = Square() - self.play(FadeIn(square)) - - -class FadeInFromTest(Scene): - def construct(self): - square = Square() - self.play(FadeInFrom(square, direction=UP)) - - -class FadeInFromDownTest(Scene): - def construct(self): - square = Square() - self.play(FadeInFromDown(square)) - - -class FadeOutAndShiftTest(Scene): - def construct(self): - square = Square() - self.play(FadeOutAndShift(square, direction=UP)) - - -class FadeInFromLargeTest(Scene): - def construct(self): - square = Square() - self.play(FadeInFromLarge(square)) - - -class GrowFromPointTest(Scene): - def construct(self): - square = Square() - self.play(GrowFromPoint(square, np.array((1, 1, 0)))) - - -class GrowFromCenterTest(Scene): - def construct(self): - square = Square() - self.play(GrowFromCenter(square)) - - -class GrowFromEdgeTest(Scene): - def construct(self): - square = Square() - self.play(GrowFromEdge(square, DOWN)) - - -class SpinInFromNothingTest(Scene): - def construct(self): - square = Square() - self.play(SpinInFromNothing(square)) - - -class ShrinkToCenterTest(Scene): - def construct(self): - square = Square() - self.play(ShrinkToCenter(square)) - -def test_scenes(): - utils_test_scenes(get_scenes_to_test(__name__), "creation") diff --git a/tests/test_geometry.py b/tests/test_geometry.py deleted file mode 100644 index 5e7a812a5e..0000000000 --- a/tests/test_geometry.py +++ /dev/null @@ -1,110 +0,0 @@ -from manim import * -import numpy as np -from testing_utils import utils_test_scenes, get_scenes_to_test - - -class CoordinatesTest(Scene): - def construct(self): - dots = [Dot(np.array([x, y, 0])) for x in range(-7, 8) for y in range(-4, 5)] - self.play(Animation(VGroup(*dots))) - - -class ArcTest(Scene): - def construct(self): - a = Arc(PI) - self.play(Animation(a)) - - -class ArcBetweenPointsTest(Scene): - def construct(self): - a = ArcBetweenPoints(np.array([1, 1, 0]), np.array([2, 2, 0])) - self.play(Animation(a)) - - -class CurvedArrowTest(Scene): - def construct(self): - a = CurvedArrow(np.array([1, 1, 0]), np.array([2, 2, 0])) - self.play(Animation(a)) - - -class CircleTest(Scene): - def construct(self): - circle = Circle() - self.play(Animation(circle)) - - -class DotTest(Scene): - def construct(self): - dot = Dot() - self.play(Animation(dot)) - - -class EllipseTest(Scene): - def construct(self): - e = Ellipse() - self.play(Animation(e)) - - -class SectorTest(Scene): - def construct(self): - e = Sector() - self.play(Animation(e)) - - -class AnnulusTest(Scene): - def construct(self): - a = Annulus() - self.play(Animation(a)) - - -class AnnularSectorTest(Scene): - def construct(self): - a = AnnularSector() - self.play(Animation(a)) - - -class LineTest(Scene): - def construct(self): - a = Line(np.array([1, 1, 0]), np.array([2, 2, 0])) - self.play(Animation(a)) - - -class Elbowtest(Scene): - def construct(self): - a = Elbow() - self.play(Animation(a)) - - -class DoubleArrowTest(Scene): - def construct(self): - a = DoubleArrow() - self.play(Animation(a)) - - -class VectorTest(Scene): - def construct(self): - a = Vector(UP) - self.play(Animation(a)) - - -class PolygonTest(Scene): - def construct(self): - a = Polygon( - *[np.array([1, 1, 0]), np.array([2, 2, 0]), np.array([2, 3, 0])]) - self.play(Animation(a)) - - -class RectangleTest(Scene): - def construct(self): - a = Rectangle() - self.play(Animation(a)) - - -class RoundedRectangleTest(Scene): - def construct(self): - a = RoundedRectangle() - self.play(Animation(a)) - - -def test_scenes(): - utils_test_scenes(get_scenes_to_test(__name__), "geometry") diff --git a/tests/test_graph.py b/tests/test_graph.py deleted file mode 100644 index a4783ef783..0000000000 --- a/tests/test_graph.py +++ /dev/null @@ -1,25 +0,0 @@ -from manim import * -from testing_utils import utils_test_scenes, get_scenes_to_test - - -class PlotFunctions(GraphScene): - CONFIG = { - "x_min": -10, - "x_max": 10.3, - "y_min": -1.5, - "y_max": 1.5, - "graph_origin": ORIGIN, - "function_color": RED, - "axes_color": GREEN, - "x_labeled_nums": range(-10,12,2), - } - - def construct(self): - constants.TEX_TEMPLATE = TexTemplate() - self.setup_axes() - f = self.get_graph(lambda x: x**2) - - self.play(Animation(f)) - -def test_scenes(): - utils_test_scenes(get_scenes_to_test(__name__), "graph", caching_needed=True) diff --git a/tests/test_imports.py b/tests/test_imports.py deleted file mode 100644 index 55ed89a48a..0000000000 --- a/tests/test_imports.py +++ /dev/null @@ -1,2 +0,0 @@ -def test_import(): - import manim diff --git a/tests/test_indication.py b/tests/test_indication.py deleted file mode 100644 index 48217c4f46..0000000000 --- a/tests/test_indication.py +++ /dev/null @@ -1,77 +0,0 @@ -from manim import * -from testing_utils import utils_test_scenes, get_scenes_to_test - - -class FocusOnTest(Scene): - def construct(self): - square = Square() - self.add(square) - self.play(FocusOn(square)) - - -class IndicateTest(Scene): - def construct(self): - square = Square() - self.play(Indicate(square)) - - -class FlashTest(Scene): - def construct(self): - square = Square() - self.add(square) - self.play(Flash(square)) - - -class CircleIndicateTest(Scene): - def construct(self): - square = Square() - self.add(square) - self.play(CircleIndicate(square)) - - -class ShowPassingFlashTest(Scene): - def construct(self): - square = Square() - self.add(square) - self.play(ShowPassingFlash(square)) - - -class ShowCreationThenDestructionTest(Scene): - def construct(self): - square = Square() - self.play(ShowCreationThenDestruction(square)) - - -class ShowCreationThenFadeOutTest(Scene): - def construct(self): - square = Square() - self.play(ShowCreationThenFadeOut(square)) - - -class ShowPassingFlashAroundTest(Scene): - def construct(self): - circle = Circle() - self.play(ShowPassingFlashAround(circle)) - - -class ApplyWaveTest(Scene): - def construct(self): - square = Square() - self.play(ApplyWave(square)) - - -class WiggleOutThenInTest(Scene): - def construct(self): - square = Square() - self.add(square) - self.play(WiggleOutThenIn(square)) - - -class TurnInsideOutTest(Scene): - def construct(self): - square = Square() - self.add(square) - self.play(TurnInsideOut(square)) - -def test_scenes(): - utils_test_scenes(get_scenes_to_test(__name__), "indication") diff --git a/tests/test_movements.py b/tests/test_movements.py deleted file mode 100644 index 1079a240ab..0000000000 --- a/tests/test_movements.py +++ /dev/null @@ -1,50 +0,0 @@ -from manim import * -from testing_utils import utils_test_scenes, get_scenes_to_test - - -class HomotopyTest(Scene): - def construct(self): - def func(x, y, z, t): - norm = get_norm([x, y]) - tau = interpolate(5, -5, t) + norm/config['frame_x_radius'] - alpha = sigmoid(tau) - return [x, y + 0.5*np.sin(2*np.pi*alpha)-t*SMALL_BUFF/2, z] - square = Square() - self.play(Homotopy(func, square)) - - -class PhaseFlowTest(Scene): - def construct(self): - square = Square() - def func(t): - return t*0.5*UP - self.play(PhaseFlow(func, square)) - - -class MoveAlongPathTest(Scene): - def construct(self): - square = Square() - dot = Dot() - self.play(MoveAlongPath(dot, square)) - - -class RotateTest(Scene): - def construct(self): - square = Square() - self.play(Rotate(square, PI)) - - -class MoveToTest(Scene): - def construct(self): - square = Square() - self.play(square.move_to, np.array([1.0, 1.0, 0.0])) - - -class ShiftTest(Scene): - def construct(self): - square = Square() - self.play(square.shift, UP) - - -def test_scenes(): - utils_test_scenes(get_scenes_to_test(__name__), "movements") diff --git a/tests/test_threed.py b/tests/test_threed.py deleted file mode 100644 index 37fd406d8e..0000000000 --- a/tests/test_threed.py +++ /dev/null @@ -1,35 +0,0 @@ -from manim import * -from testing_utils import utils_test_scenes, get_scenes_to_test - - -class CubeTest(ThreeDScene): - def construct(self): - self.play(Animation(Cube())) - - -class SphereTest(ThreeDScene): - def construct(self): - self.play(Animation(Sphere())) - - -class AxesTest(ThreeDScene): - def construct(self): - self.play(Animation(ThreeDAxes())) - - -class CameraMoveTest(ThreeDScene): - def construct(self): - cube = Cube() - self.play(Animation(cube)) - self.move_camera(phi=PI/4, theta=PI/4) - - -class AmbientCameraMoveTest(ThreeDScene): - def construct(self): - cube = Cube() - self.begin_ambient_camera_rotation(rate=0.5) - self.play(Animation(cube)) - - -def test_scenes(): - utils_test_scenes(get_scenes_to_test(__name__), "threed") diff --git a/tests/test_transform.py b/tests/test_transform.py deleted file mode 100644 index 85ad382329..0000000000 --- a/tests/test_transform.py +++ /dev/null @@ -1,123 +0,0 @@ -from manim import * -from testing_utils import utils_test_scenes, get_scenes_to_test - - -class TransformTest(Scene): - def construct(self): - square = Square() - circle = Circle() - self.play(Transform(square, circle)) - - -class TransformFromCopyTest(Scene): - def construct(self): - square = Square() - circle = Circle() - self.play(TransformFromCopy(square, circle)) - - -class ClockwiseTransformTest(Scene): - def construct(self): - square = Square() - circle = Circle() - self.play(ClockwiseTransform(square, circle)) - - -class CounterclockwiseTransformTest(Scene): - def construct(self): - square = Square() - circle = Circle() - self.play(CounterclockwiseTransform(square, circle)) - - -class MoveToTargetTest(Scene): - def construct(self): - square = Square() - square.generate_target() - square.target.shift(3*UP) - self.play(MoveToTarget(square)) - - -class ApplyPointwiseFunctionTest(Scene): - def construct(self): - square = Square() - def func(p): - return np.array([1.0, 1.0, 0.0]) - self.play( - ApplyPointwiseFunction(func, square) - ) - - -class FadeToColortTest(Scene): - def construct(self): - square = Square() - self.play(FadeToColor(square, RED)) - - -class ScaleInPlaceTest(Scene): - def construct(self): - square = Square() - self.play(ScaleInPlace(square, scale_factor=0.1)) - - -class ShrinkToCenterTest(Scene): - def construct(self): - square = Square() - self.play(ShrinkToCenter(square)) - - -class RestoreTest(Scene): - def construct(self): - square = Square() - circle = Circle() - self.play(Transform(square, circle)) - square.save_state() - self.play(square.shift, UP) - self.play(Restore(square)) - - -class ApplyFunctionTest(Scene): - def construct(self): - square = Square() - self.add(square) - def apply_function(mob): - mob.scale(2) - mob.to_corner(UR) - mob.rotate(PI/4) - mob.set_color(RED) - return mob - self.play( - ApplyFunction( - apply_function, - square - ) - ) - - -class ApplyComplexFunctionTest(Scene): - def construct(self): - square = Square() - self.play( - ApplyComplexFunction( - lambda complex_num: complex_num + 2 * np.complex(0, 1), square - ) - ) - - -class ApplyMatrixTest(Scene): - def construct(self): - square = Square() - matrice = [[1.0, 0.5], [1.0, 0.0]] - self.play(ApplyMatrix(matrice, square)) - - -class CyclicReplaceTest(Scene): - def construct(self): - square = Square() - circle = Circle() - circle.shift(3 * UP) - self.play(CyclicReplace(square, circle)) - - -def test_scenes(): - utils_test_scenes(get_scenes_to_test(__name__), "transform") diff --git a/tests/test_updaters.py b/tests/test_updaters.py deleted file mode 100644 index 7732989720..0000000000 --- a/tests/test_updaters.py +++ /dev/null @@ -1,25 +0,0 @@ -from manim import * -from testing_utils import utils_test_scenes, get_scenes_to_test - - -class UpdaterTest(Scene): - def construct(self): - dot = Dot() - square = Square() - self.add(dot, square) - square.add_updater(lambda m: m.next_to(dot, RIGHT, buff=SMALL_BUFF)) - self.add(square) - self.play(dot.shift, UP*2) - square.clear_updaters() - - -class ValueTrackerTest(Scene): - def construct(self): - theta = ValueTracker(PI/2) - line_1 = Line(ORIGIN, RIGHT*3, color=RED) - line_2 = Line(ORIGIN, RIGHT*3, color=GREEN) - line_2.rotate(theta.get_value(), about_point=ORIGIN) - - -def test_scenes(): - utils_test_scenes(get_scenes_to_test(__name__), "updaters") diff --git a/tests/test_writing.py b/tests/test_writing.py deleted file mode 100644 index 6a2a6869d2..0000000000 --- a/tests/test_writing.py +++ /dev/null @@ -1,36 +0,0 @@ -from manim import * -from testing_utils import utils_test_scenes, get_scenes_to_test - - -#NOTE : All of these tests use cached data (in /test_cache) -# Cache functionality is tested within test_CLI. - -class TextTest(Scene): - def construct(self): - t = Text('testing', font = "Arial") - self.play(Animation(t)) - - -class TextMobjectTest(Scene): - def construct(self): - constants.TEX_TEMPLATE = TexTemplate() - t = TextMobject('Hello world !') - self.play(Animation(t)) - - -class TexMobjectTest(Scene): - def construct(self): - #IMPORTANT NOTE : This won't test the abitilty of manim to write/cache latex. - # i.e It will pass even if latex is not installed. - # This is due to the fact that the latex used here has been cached (see test_cache directory) - constants.TEX_TEMPLATE = TexTemplate() - t = TexMobject( - "\\sum_{n=1}^\\infty " - "\\frac{1}{n^2} = \\frac{\\pi^2}{6}" - ) - self.play(Animation(t)) - - - -def test_scenes(): - utils_test_scenes(get_scenes_to_test(__name__), "writing", caching_needed=True) diff --git a/tests/testing_utils.py b/tests/testing_utils.py deleted file mode 100644 index affd66e206..0000000000 --- a/tests/testing_utils.py +++ /dev/null @@ -1,157 +0,0 @@ -import numpy as np -import os -import sys -import inspect -import logging -import pytest - -from manim import logger -from manim import config - - -class SceneTester: - """Class used to test the animations. - - Parameters - ---------- - scene_object : :class:`~.Scene` - The scene to be tested - config_scene : :class:`dict` - The configuration of the scene - module_tested : :class:`str` - The name of the module tested. i.e if we are testing functions of creation.py, the module will be "creation" - - Attributes - ----------- - path_tests_medias_cache : : class:`str` - Path to 'media' folder generated by manim. This folder contains cached data used by some tests. - path_tests_data : : class:`str` - Path to the data used for the tests (i.e the pre-rendered frames). - scene : :class:`Scene` - The scene tested - """ - - def __init__(self, scene_object, module_tested, caching_needed=False): - # Disable the the logs, (--quiet is broken) TODO - logging.disable(logging.CRITICAL) - self.path_tests_medias_cache = os.path.join('tests_cache', module_tested) - self.path_tests_data = os.path.join('tests_data', module_tested) - - if caching_needed: - config['text_dir'] = os.path.join( - self.path_tests_medias_cache, scene_object.__name__, 'Text') - config['tex_dir'] = os.path.join( - self.path_tests_medias_cache, scene_object.__name__, 'Tex') - - config['pixel_height'] = 480 - config['pixel_width'] = 854 - config['frame_rate'] = 15 - - # By invoking this, the scene is rendered. - self.scene = scene_object() - - def load_data(self): - """Load the np.array of the last frame of a pre-rendered scene. If not found, throw FileNotFoundError. - - Returns - ------- - :class:`numpy.array` - The pre-rendered frame. - """ - frame_data_path = os.path.join( - self.path_tests_data, "{}.npy".format(str(self.scene))) - return np.load(frame_data_path) - - - def test(self): - """Compare pre-rendered frame to the frame rendered during the test.""" - frame_data = self.scene.get_frame() - expected_frame_data = self.load_data() - - assert frame_data.shape == expected_frame_data.shape, \ - "The frames have different shape:" \ - + f"\nexpected_frame_data.shape = {expected_frame_data.shape}" \ - + f"\nframe_data.shape = {frame_data.shape}" - - test_result = np.array_equal(frame_data, expected_frame_data) - if not test_result: - incorrect_indices = np.argwhere(frame_data != expected_frame_data) - first_incorrect_index = incorrect_indices[0][:2] - first_incorrect_point = frame_data[tuple(first_incorrect_index)] - expected_point = expected_frame_data[tuple(first_incorrect_index)] - assert test_result, \ - f"The frames don't match. {str(self.scene).replace('Test', '')} has been modified." \ - + "\nPlease ignore if it was intended." \ - + f"\nFirst unmatched index is at {first_incorrect_index}: {first_incorrect_point} != {expected_point}" - - -def get_scenes_to_test(module_name): - """Get all Test classes of the module from which it is called. Used to fetch all the SceneTest of the module. - - Parameters - ---------- - module_name : :class:`str` - The name of the module tested. - - Returns - ------- - :class:`list` - The list of all the classes of the module. - """ - return inspect.getmembers(sys.modules[module_name], lambda m: inspect.isclass(m) and m.__module__ == module_name) - - -def utils_test_scenes(scenes_to_test, module_name, caching_needed=False): - for _, scene_tested in scenes_to_test: - SceneTester(scene_tested, module_name, - caching_needed=caching_needed).test() - - -def set_test_scene(scene_object, module_name): - """Function used to set up the test data for a new feature. This will basically set up a pre-rendered frame for a scene. This is meant to be used only - when setting up tests. Please refer to the wiki. - - Parameters - ---------- - scene_object : :class:`~.Scene` - The scene with wich we want to set up a new test. - module_name : :class:`str` - The name of the module in which the functionnality tested is contained. For example, 'Write' is contained in the module 'creation'. This will be used in the folder architecture - of '/tests_data'. - - Examples - -------- - Normal usage:: - set_test_scene(DotTest, "geometry") - """ - - CONFIG_TEST = { - 'camera_config': { - 'frame_rate': 15, - 'pixel_height': 480, - 'pixel_width': 854 - }, - 'end_at_animation_number': None, - 'file_writer_config': { - 'file_name': None, - 'input_file_path': 'test.py', - 'movie_file_extension': '.mp4', - 'png_mode': 'RGB', - 'save_as_gif': False, - 'save_last_frame': False, - 'save_pngs': False, - 'write_to_movie': False - }, - 'leave_progress_bars': False, - 'skip_animations': True, - 'start_at_animation_number': None - } - - scene = scene_object(**CONFIG_TEST) - data = scene.get_frame() - path = os.path.join("manim", "tests", "tests_data", - "{}".format(module_name)) - if not os.path.isdir(path): - os.makedirs(path) - np.save(os.path.join(path, str(scene)), data) - logger.info('Test data saved in ' + path + '\n') diff --git a/tests/tests_cache/graph/PlotFunctions/Tex/3623b72242f36fa9.aux b/tests/tests_cache/graph/PlotFunctions/Tex/3623b72242f36fa9.aux deleted file mode 100644 index 64ae5c5e43..0000000000 --- a/tests/tests_cache/graph/PlotFunctions/Tex/3623b72242f36fa9.aux +++ /dev/null @@ -1,3 +0,0 @@ -\relax -\providecommand\babel@aux[2]{} -\@nameuse{bbl@beforestart} diff --git a/tests/tests_cache/graph/PlotFunctions/Tex/3623b72242f36fa9.dvi b/tests/tests_cache/graph/PlotFunctions/Tex/3623b72242f36fa9.dvi deleted file mode 100644 index bfd7265312..0000000000 Binary files a/tests/tests_cache/graph/PlotFunctions/Tex/3623b72242f36fa9.dvi and /dev/null differ diff --git a/tests/tests_cache/graph/PlotFunctions/Tex/3623b72242f36fa9.svg b/tests/tests_cache/graph/PlotFunctions/Tex/3623b72242f36fa9.svg deleted file mode 100644 index 260887c83a..0000000000 --- a/tests/tests_cache/graph/PlotFunctions/Tex/3623b72242f36fa9.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/tests/tests_cache/graph/PlotFunctions/Tex/3623b72242f36fa9.tex b/tests/tests_cache/graph/PlotFunctions/Tex/3623b72242f36fa9.tex deleted file mode 100644 index 6314f26a72..0000000000 --- a/tests/tests_cache/graph/PlotFunctions/Tex/3623b72242f36fa9.tex +++ /dev/null @@ -1,8 +0,0 @@ -\documentclass[preview]{standalone}\usepackage[english]{babel}\usepackage{amsmath}\usepackage{amssymb}\usepackage{dsfont}\usepackage{setspace}\usepackage{tipa}\usepackage{relsize}\usepackage{textcomp}\usepackage{mathrsfs}\usepackage{calligra}\usepackage{wasysym}\usepackage{ragged2e}\usepackage{physics}\usepackage{xcolor}\usepackage{microtype}\linespread{1} -\DisableLigatures{encoding = *, family = *} - -\begin{document} - -\centering $y$ - -\end{document} \ No newline at end of file diff --git a/tests/tests_cache/graph/PlotFunctions/Tex/4c165d8733e6b394.aux b/tests/tests_cache/graph/PlotFunctions/Tex/4c165d8733e6b394.aux deleted file mode 100644 index 64ae5c5e43..0000000000 --- a/tests/tests_cache/graph/PlotFunctions/Tex/4c165d8733e6b394.aux +++ /dev/null @@ -1,3 +0,0 @@ -\relax -\providecommand\babel@aux[2]{} -\@nameuse{bbl@beforestart} diff --git a/tests/tests_cache/graph/PlotFunctions/Tex/4c165d8733e6b394.dvi b/tests/tests_cache/graph/PlotFunctions/Tex/4c165d8733e6b394.dvi deleted file mode 100644 index afb06d32b8..0000000000 Binary files a/tests/tests_cache/graph/PlotFunctions/Tex/4c165d8733e6b394.dvi and /dev/null differ diff --git a/tests/tests_cache/graph/PlotFunctions/Tex/4c165d8733e6b394.svg b/tests/tests_cache/graph/PlotFunctions/Tex/4c165d8733e6b394.svg deleted file mode 100644 index d177e3864f..0000000000 --- a/tests/tests_cache/graph/PlotFunctions/Tex/4c165d8733e6b394.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/tests/tests_cache/graph/PlotFunctions/Tex/4c165d8733e6b394.tex b/tests/tests_cache/graph/PlotFunctions/Tex/4c165d8733e6b394.tex deleted file mode 100644 index 333c5610b1..0000000000 --- a/tests/tests_cache/graph/PlotFunctions/Tex/4c165d8733e6b394.tex +++ /dev/null @@ -1,8 +0,0 @@ -\documentclass[preview]{standalone}\usepackage[english]{babel}\usepackage{amsmath}\usepackage{amssymb}\usepackage{dsfont}\usepackage{setspace}\usepackage{tipa}\usepackage{relsize}\usepackage{textcomp}\usepackage{mathrsfs}\usepackage{calligra}\usepackage{wasysym}\usepackage{ragged2e}\usepackage{physics}\usepackage{xcolor}\usepackage{microtype}\linespread{1} -\DisableLigatures{encoding = *, family = *} - -\begin{document} - -$y$ - -\end{document} \ No newline at end of file diff --git a/tests/tests_cache/graph/PlotFunctions/Tex/5b246d8c932af71a.aux b/tests/tests_cache/graph/PlotFunctions/Tex/5b246d8c932af71a.aux deleted file mode 100644 index 64ae5c5e43..0000000000 --- a/tests/tests_cache/graph/PlotFunctions/Tex/5b246d8c932af71a.aux +++ /dev/null @@ -1,3 +0,0 @@ -\relax -\providecommand\babel@aux[2]{} -\@nameuse{bbl@beforestart} diff --git a/tests/tests_cache/graph/PlotFunctions/Tex/5b246d8c932af71a.dvi b/tests/tests_cache/graph/PlotFunctions/Tex/5b246d8c932af71a.dvi deleted file mode 100644 index c0b10377fa..0000000000 Binary files a/tests/tests_cache/graph/PlotFunctions/Tex/5b246d8c932af71a.dvi and /dev/null differ diff --git a/tests/tests_cache/graph/PlotFunctions/Tex/5b246d8c932af71a.svg b/tests/tests_cache/graph/PlotFunctions/Tex/5b246d8c932af71a.svg deleted file mode 100644 index 6f9673807e..0000000000 --- a/tests/tests_cache/graph/PlotFunctions/Tex/5b246d8c932af71a.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/tests/tests_cache/graph/PlotFunctions/Tex/5b246d8c932af71a.tex b/tests/tests_cache/graph/PlotFunctions/Tex/5b246d8c932af71a.tex deleted file mode 100644 index 3313377334..0000000000 --- a/tests/tests_cache/graph/PlotFunctions/Tex/5b246d8c932af71a.tex +++ /dev/null @@ -1,10 +0,0 @@ -\documentclass[preview]{standalone}\usepackage[english]{babel}\usepackage{amsmath}\usepackage{amssymb}\usepackage{dsfont}\usepackage{setspace}\usepackage{tipa}\usepackage{relsize}\usepackage{textcomp}\usepackage{mathrsfs}\usepackage{calligra}\usepackage{wasysym}\usepackage{ragged2e}\usepackage{physics}\usepackage{xcolor}\usepackage{microtype}\linespread{1} -\DisableLigatures{encoding = *, family = *} - -\begin{document} - -\begin{align*} -6 -\end{align*} - -\end{document} \ No newline at end of file diff --git a/tests/tests_cache/graph/PlotFunctions/Tex/62daeedc9e87677e.aux b/tests/tests_cache/graph/PlotFunctions/Tex/62daeedc9e87677e.aux deleted file mode 100644 index 64ae5c5e43..0000000000 --- a/tests/tests_cache/graph/PlotFunctions/Tex/62daeedc9e87677e.aux +++ /dev/null @@ -1,3 +0,0 @@ -\relax -\providecommand\babel@aux[2]{} -\@nameuse{bbl@beforestart} diff --git a/tests/tests_cache/graph/PlotFunctions/Tex/62daeedc9e87677e.dvi b/tests/tests_cache/graph/PlotFunctions/Tex/62daeedc9e87677e.dvi deleted file mode 100644 index fa85fc38ce..0000000000 Binary files a/tests/tests_cache/graph/PlotFunctions/Tex/62daeedc9e87677e.dvi and /dev/null differ diff --git a/tests/tests_cache/graph/PlotFunctions/Tex/62daeedc9e87677e.svg b/tests/tests_cache/graph/PlotFunctions/Tex/62daeedc9e87677e.svg deleted file mode 100644 index ca53800f47..0000000000 --- a/tests/tests_cache/graph/PlotFunctions/Tex/62daeedc9e87677e.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/tests/tests_cache/graph/PlotFunctions/Tex/62daeedc9e87677e.tex b/tests/tests_cache/graph/PlotFunctions/Tex/62daeedc9e87677e.tex deleted file mode 100644 index 454c71f5ef..0000000000 --- a/tests/tests_cache/graph/PlotFunctions/Tex/62daeedc9e87677e.tex +++ /dev/null @@ -1,10 +0,0 @@ -\documentclass[preview]{standalone}\usepackage[english]{babel}\usepackage{amsmath}\usepackage{amssymb}\usepackage{dsfont}\usepackage{setspace}\usepackage{tipa}\usepackage{relsize}\usepackage{textcomp}\usepackage{mathrsfs}\usepackage{calligra}\usepackage{wasysym}\usepackage{ragged2e}\usepackage{physics}\usepackage{xcolor}\usepackage{microtype}\linespread{1} -\DisableLigatures{encoding = *, family = *} - -\begin{document} - -\begin{align*} -4 -\end{align*} - -\end{document} \ No newline at end of file diff --git a/tests/tests_cache/graph/PlotFunctions/Tex/66150e0224a73e5f.aux b/tests/tests_cache/graph/PlotFunctions/Tex/66150e0224a73e5f.aux deleted file mode 100644 index 64ae5c5e43..0000000000 --- a/tests/tests_cache/graph/PlotFunctions/Tex/66150e0224a73e5f.aux +++ /dev/null @@ -1,3 +0,0 @@ -\relax -\providecommand\babel@aux[2]{} -\@nameuse{bbl@beforestart} diff --git a/tests/tests_cache/graph/PlotFunctions/Tex/66150e0224a73e5f.dvi b/tests/tests_cache/graph/PlotFunctions/Tex/66150e0224a73e5f.dvi deleted file mode 100644 index 6645c432e7..0000000000 Binary files a/tests/tests_cache/graph/PlotFunctions/Tex/66150e0224a73e5f.dvi and /dev/null differ diff --git a/tests/tests_cache/graph/PlotFunctions/Tex/66150e0224a73e5f.svg b/tests/tests_cache/graph/PlotFunctions/Tex/66150e0224a73e5f.svg deleted file mode 100644 index f179d229a9..0000000000 --- a/tests/tests_cache/graph/PlotFunctions/Tex/66150e0224a73e5f.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/tests/tests_cache/graph/PlotFunctions/Tex/66150e0224a73e5f.tex b/tests/tests_cache/graph/PlotFunctions/Tex/66150e0224a73e5f.tex deleted file mode 100644 index 533775924a..0000000000 --- a/tests/tests_cache/graph/PlotFunctions/Tex/66150e0224a73e5f.tex +++ /dev/null @@ -1,10 +0,0 @@ -\documentclass[preview]{standalone}\usepackage[english]{babel}\usepackage{amsmath}\usepackage{amssymb}\usepackage{dsfont}\usepackage{setspace}\usepackage{tipa}\usepackage{relsize}\usepackage{textcomp}\usepackage{mathrsfs}\usepackage{calligra}\usepackage{wasysym}\usepackage{ragged2e}\usepackage{physics}\usepackage{xcolor}\usepackage{microtype}\linespread{1} -\DisableLigatures{encoding = *, family = *} - -\begin{document} - -\begin{align*} -- -\end{align*} - -\end{document} \ No newline at end of file diff --git a/tests/tests_cache/graph/PlotFunctions/Tex/6896c368b863add8.aux b/tests/tests_cache/graph/PlotFunctions/Tex/6896c368b863add8.aux deleted file mode 100644 index 64ae5c5e43..0000000000 --- a/tests/tests_cache/graph/PlotFunctions/Tex/6896c368b863add8.aux +++ /dev/null @@ -1,3 +0,0 @@ -\relax -\providecommand\babel@aux[2]{} -\@nameuse{bbl@beforestart} diff --git a/tests/tests_cache/graph/PlotFunctions/Tex/6896c368b863add8.dvi b/tests/tests_cache/graph/PlotFunctions/Tex/6896c368b863add8.dvi deleted file mode 100644 index 2f941cd4e4..0000000000 Binary files a/tests/tests_cache/graph/PlotFunctions/Tex/6896c368b863add8.dvi and /dev/null differ diff --git a/tests/tests_cache/graph/PlotFunctions/Tex/6896c368b863add8.svg b/tests/tests_cache/graph/PlotFunctions/Tex/6896c368b863add8.svg deleted file mode 100644 index 7ccce63068..0000000000 --- a/tests/tests_cache/graph/PlotFunctions/Tex/6896c368b863add8.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/tests/tests_cache/graph/PlotFunctions/Tex/6896c368b863add8.tex b/tests/tests_cache/graph/PlotFunctions/Tex/6896c368b863add8.tex deleted file mode 100644 index e76c2410b1..0000000000 --- a/tests/tests_cache/graph/PlotFunctions/Tex/6896c368b863add8.tex +++ /dev/null @@ -1,10 +0,0 @@ -\documentclass[preview]{standalone}\usepackage[english]{babel}\usepackage{amsmath}\usepackage{amssymb}\usepackage{dsfont}\usepackage{setspace}\usepackage{tipa}\usepackage{relsize}\usepackage{textcomp}\usepackage{mathrsfs}\usepackage{calligra}\usepackage{wasysym}\usepackage{ragged2e}\usepackage{physics}\usepackage{xcolor}\usepackage{microtype}\linespread{1} -\DisableLigatures{encoding = *, family = *} - -\begin{document} - -\begin{align*} -1 -\end{align*} - -\end{document} \ No newline at end of file diff --git a/tests/tests_cache/graph/PlotFunctions/Tex/7399563bee7ad4e5.aux b/tests/tests_cache/graph/PlotFunctions/Tex/7399563bee7ad4e5.aux deleted file mode 100644 index 64ae5c5e43..0000000000 --- a/tests/tests_cache/graph/PlotFunctions/Tex/7399563bee7ad4e5.aux +++ /dev/null @@ -1,3 +0,0 @@ -\relax -\providecommand\babel@aux[2]{} -\@nameuse{bbl@beforestart} diff --git a/tests/tests_cache/graph/PlotFunctions/Tex/7399563bee7ad4e5.dvi b/tests/tests_cache/graph/PlotFunctions/Tex/7399563bee7ad4e5.dvi deleted file mode 100644 index 8302b9e8ed..0000000000 Binary files a/tests/tests_cache/graph/PlotFunctions/Tex/7399563bee7ad4e5.dvi and /dev/null differ diff --git a/tests/tests_cache/graph/PlotFunctions/Tex/7399563bee7ad4e5.svg b/tests/tests_cache/graph/PlotFunctions/Tex/7399563bee7ad4e5.svg deleted file mode 100644 index d667ac079b..0000000000 --- a/tests/tests_cache/graph/PlotFunctions/Tex/7399563bee7ad4e5.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/tests/tests_cache/graph/PlotFunctions/Tex/7399563bee7ad4e5.tex b/tests/tests_cache/graph/PlotFunctions/Tex/7399563bee7ad4e5.tex deleted file mode 100644 index b638b4c620..0000000000 --- a/tests/tests_cache/graph/PlotFunctions/Tex/7399563bee7ad4e5.tex +++ /dev/null @@ -1,10 +0,0 @@ -\documentclass[preview]{standalone}\usepackage[english]{babel}\usepackage{amsmath}\usepackage{amssymb}\usepackage{dsfont}\usepackage{setspace}\usepackage{tipa}\usepackage{relsize}\usepackage{textcomp}\usepackage{mathrsfs}\usepackage{calligra}\usepackage{wasysym}\usepackage{ragged2e}\usepackage{physics}\usepackage{xcolor}\usepackage{microtype}\linespread{1} -\DisableLigatures{encoding = *, family = *} - -\begin{document} - -\begin{align*} -2 -\end{align*} - -\end{document} \ No newline at end of file diff --git a/tests/tests_cache/graph/PlotFunctions/Tex/89a469c6726623e3.aux b/tests/tests_cache/graph/PlotFunctions/Tex/89a469c6726623e3.aux deleted file mode 100644 index 64ae5c5e43..0000000000 --- a/tests/tests_cache/graph/PlotFunctions/Tex/89a469c6726623e3.aux +++ /dev/null @@ -1,3 +0,0 @@ -\relax -\providecommand\babel@aux[2]{} -\@nameuse{bbl@beforestart} diff --git a/tests/tests_cache/graph/PlotFunctions/Tex/89a469c6726623e3.dvi b/tests/tests_cache/graph/PlotFunctions/Tex/89a469c6726623e3.dvi deleted file mode 100644 index 38c4ac686e..0000000000 Binary files a/tests/tests_cache/graph/PlotFunctions/Tex/89a469c6726623e3.dvi and /dev/null differ diff --git a/tests/tests_cache/graph/PlotFunctions/Tex/89a469c6726623e3.svg b/tests/tests_cache/graph/PlotFunctions/Tex/89a469c6726623e3.svg deleted file mode 100644 index d52f01943f..0000000000 --- a/tests/tests_cache/graph/PlotFunctions/Tex/89a469c6726623e3.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/tests/tests_cache/graph/PlotFunctions/Tex/89a469c6726623e3.tex b/tests/tests_cache/graph/PlotFunctions/Tex/89a469c6726623e3.tex deleted file mode 100644 index 04ec34a57d..0000000000 --- a/tests/tests_cache/graph/PlotFunctions/Tex/89a469c6726623e3.tex +++ /dev/null @@ -1,10 +0,0 @@ -\documentclass[preview]{standalone}\usepackage[english]{babel}\usepackage{amsmath}\usepackage{amssymb}\usepackage{dsfont}\usepackage{setspace}\usepackage{tipa}\usepackage{relsize}\usepackage{textcomp}\usepackage{mathrsfs}\usepackage{calligra}\usepackage{wasysym}\usepackage{ragged2e}\usepackage{physics}\usepackage{xcolor}\usepackage{microtype}\linespread{1} -\DisableLigatures{encoding = *, family = *} - -\begin{document} - -\begin{align*} -0 -\end{align*} - -\end{document} \ No newline at end of file diff --git a/tests/tests_cache/graph/PlotFunctions/Tex/9f4cc7daf5892d94.aux b/tests/tests_cache/graph/PlotFunctions/Tex/9f4cc7daf5892d94.aux deleted file mode 100644 index 64ae5c5e43..0000000000 --- a/tests/tests_cache/graph/PlotFunctions/Tex/9f4cc7daf5892d94.aux +++ /dev/null @@ -1,3 +0,0 @@ -\relax -\providecommand\babel@aux[2]{} -\@nameuse{bbl@beforestart} diff --git a/tests/tests_cache/graph/PlotFunctions/Tex/9f4cc7daf5892d94.dvi b/tests/tests_cache/graph/PlotFunctions/Tex/9f4cc7daf5892d94.dvi deleted file mode 100644 index 41e6b9aad5..0000000000 Binary files a/tests/tests_cache/graph/PlotFunctions/Tex/9f4cc7daf5892d94.dvi and /dev/null differ diff --git a/tests/tests_cache/graph/PlotFunctions/Tex/9f4cc7daf5892d94.svg b/tests/tests_cache/graph/PlotFunctions/Tex/9f4cc7daf5892d94.svg deleted file mode 100644 index e93171b7e8..0000000000 --- a/tests/tests_cache/graph/PlotFunctions/Tex/9f4cc7daf5892d94.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/tests/tests_cache/graph/PlotFunctions/Tex/9f4cc7daf5892d94.tex b/tests/tests_cache/graph/PlotFunctions/Tex/9f4cc7daf5892d94.tex deleted file mode 100644 index 5887b3a5f0..0000000000 --- a/tests/tests_cache/graph/PlotFunctions/Tex/9f4cc7daf5892d94.tex +++ /dev/null @@ -1,8 +0,0 @@ -\documentclass[preview]{standalone}\usepackage[english]{babel}\usepackage{amsmath}\usepackage{amssymb}\usepackage{dsfont}\usepackage{setspace}\usepackage{tipa}\usepackage{relsize}\usepackage{textcomp}\usepackage{mathrsfs}\usepackage{calligra}\usepackage{wasysym}\usepackage{ragged2e}\usepackage{physics}\usepackage{xcolor}\usepackage{microtype}\linespread{1} -\DisableLigatures{encoding = *, family = *} - -\begin{document} - -$x$ - -\end{document} \ No newline at end of file diff --git a/tests/tests_cache/graph/PlotFunctions/Tex/cc5e695bd773416a.aux b/tests/tests_cache/graph/PlotFunctions/Tex/cc5e695bd773416a.aux deleted file mode 100644 index 64ae5c5e43..0000000000 --- a/tests/tests_cache/graph/PlotFunctions/Tex/cc5e695bd773416a.aux +++ /dev/null @@ -1,3 +0,0 @@ -\relax -\providecommand\babel@aux[2]{} -\@nameuse{bbl@beforestart} diff --git a/tests/tests_cache/graph/PlotFunctions/Tex/cc5e695bd773416a.dvi b/tests/tests_cache/graph/PlotFunctions/Tex/cc5e695bd773416a.dvi deleted file mode 100644 index ba89e85079..0000000000 Binary files a/tests/tests_cache/graph/PlotFunctions/Tex/cc5e695bd773416a.dvi and /dev/null differ diff --git a/tests/tests_cache/graph/PlotFunctions/Tex/cc5e695bd773416a.svg b/tests/tests_cache/graph/PlotFunctions/Tex/cc5e695bd773416a.svg deleted file mode 100644 index 0bf687c3e1..0000000000 --- a/tests/tests_cache/graph/PlotFunctions/Tex/cc5e695bd773416a.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/tests/tests_cache/graph/PlotFunctions/Tex/cc5e695bd773416a.tex b/tests/tests_cache/graph/PlotFunctions/Tex/cc5e695bd773416a.tex deleted file mode 100644 index 1803ea0d92..0000000000 --- a/tests/tests_cache/graph/PlotFunctions/Tex/cc5e695bd773416a.tex +++ /dev/null @@ -1,8 +0,0 @@ -\documentclass[preview]{standalone}\usepackage[english]{babel}\usepackage{amsmath}\usepackage{amssymb}\usepackage{dsfont}\usepackage{setspace}\usepackage{tipa}\usepackage{relsize}\usepackage{textcomp}\usepackage{mathrsfs}\usepackage{calligra}\usepackage{wasysym}\usepackage{ragged2e}\usepackage{physics}\usepackage{xcolor}\usepackage{microtype}\linespread{1} -\DisableLigatures{encoding = *, family = *} - -\begin{document} - -\centering $x$ - -\end{document} \ No newline at end of file diff --git a/tests/tests_cache/graph/PlotFunctions/Tex/e4a76237723951d2.aux b/tests/tests_cache/graph/PlotFunctions/Tex/e4a76237723951d2.aux deleted file mode 100644 index 64ae5c5e43..0000000000 --- a/tests/tests_cache/graph/PlotFunctions/Tex/e4a76237723951d2.aux +++ /dev/null @@ -1,3 +0,0 @@ -\relax -\providecommand\babel@aux[2]{} -\@nameuse{bbl@beforestart} diff --git a/tests/tests_cache/graph/PlotFunctions/Tex/e4a76237723951d2.dvi b/tests/tests_cache/graph/PlotFunctions/Tex/e4a76237723951d2.dvi deleted file mode 100644 index 36fb2af78f..0000000000 Binary files a/tests/tests_cache/graph/PlotFunctions/Tex/e4a76237723951d2.dvi and /dev/null differ diff --git a/tests/tests_cache/graph/PlotFunctions/Tex/e4a76237723951d2.svg b/tests/tests_cache/graph/PlotFunctions/Tex/e4a76237723951d2.svg deleted file mode 100644 index c4e01206aa..0000000000 --- a/tests/tests_cache/graph/PlotFunctions/Tex/e4a76237723951d2.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/tests/tests_cache/graph/PlotFunctions/Tex/e4a76237723951d2.tex b/tests/tests_cache/graph/PlotFunctions/Tex/e4a76237723951d2.tex deleted file mode 100644 index 30f7389e15..0000000000 --- a/tests/tests_cache/graph/PlotFunctions/Tex/e4a76237723951d2.tex +++ /dev/null @@ -1,10 +0,0 @@ -\documentclass[preview]{standalone}\usepackage[english]{babel}\usepackage{amsmath}\usepackage{amssymb}\usepackage{dsfont}\usepackage{setspace}\usepackage{tipa}\usepackage{relsize}\usepackage{textcomp}\usepackage{mathrsfs}\usepackage{calligra}\usepackage{wasysym}\usepackage{ragged2e}\usepackage{physics}\usepackage{xcolor}\usepackage{microtype}\linespread{1} -\DisableLigatures{encoding = *, family = *} - -\begin{document} - -\begin{align*} -8 -\end{align*} - -\end{document} \ No newline at end of file diff --git a/tests/tests_cache/writing/TexMobjectTest/Tex/77b5098a5fb87c1b.aux b/tests/tests_cache/writing/TexMobjectTest/Tex/77b5098a5fb87c1b.aux deleted file mode 100644 index 9c28a69b61..0000000000 --- a/tests/tests_cache/writing/TexMobjectTest/Tex/77b5098a5fb87c1b.aux +++ /dev/null @@ -1,2 +0,0 @@ -\relax -\@nameuse{bbl@beforestart} diff --git a/tests/tests_cache/writing/TexMobjectTest/Tex/77b5098a5fb87c1b.dvi b/tests/tests_cache/writing/TexMobjectTest/Tex/77b5098a5fb87c1b.dvi deleted file mode 100644 index c21b9495b4..0000000000 Binary files a/tests/tests_cache/writing/TexMobjectTest/Tex/77b5098a5fb87c1b.dvi and /dev/null differ diff --git a/tests/tests_cache/writing/TexMobjectTest/Tex/77b5098a5fb87c1b.svg b/tests/tests_cache/writing/TexMobjectTest/Tex/77b5098a5fb87c1b.svg deleted file mode 100644 index e201978919..0000000000 --- a/tests/tests_cache/writing/TexMobjectTest/Tex/77b5098a5fb87c1b.svg +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tests/tests_cache/writing/TexMobjectTest/Tex/77b5098a5fb87c1b.tex b/tests/tests_cache/writing/TexMobjectTest/Tex/77b5098a5fb87c1b.tex deleted file mode 100644 index 5edbddbb39..0000000000 --- a/tests/tests_cache/writing/TexMobjectTest/Tex/77b5098a5fb87c1b.tex +++ /dev/null @@ -1,30 +0,0 @@ -\documentclass[preview]{standalone} - -\usepackage[english]{babel} -\usepackage[utf8]{inputenc} -\usepackage[T1]{fontenc} -\usepackage{amsmath} -\usepackage{amssymb} -\usepackage{dsfont} -\usepackage{setspace} -\usepackage{tipa} -\usepackage{relsize} -\usepackage{textcomp} -\usepackage{mathrsfs} -\usepackage{calligra} -\usepackage{wasysym} -\usepackage{ragged2e} -\usepackage{physics} -\usepackage{xcolor} -\usepackage{microtype} -\DisableLigatures{encoding = *, family = * } -%\usepackage[UTF8]{ctex} -\linespread{1} - -\begin{document} - -\begin{align*} -\sum_{n=1}^\infty \frac{1}{n^3} = \frac{\pi^2}{6} -\end{align*} - -\end{document} diff --git a/tests/tests_cache/writing/TexMobjectTest/Tex/cd02c6a47026b73d.aux b/tests/tests_cache/writing/TexMobjectTest/Tex/cd02c6a47026b73d.aux deleted file mode 100644 index 9c28a69b61..0000000000 --- a/tests/tests_cache/writing/TexMobjectTest/Tex/cd02c6a47026b73d.aux +++ /dev/null @@ -1,2 +0,0 @@ -\relax -\@nameuse{bbl@beforestart} diff --git a/tests/tests_cache/writing/TexMobjectTest/Tex/cd02c6a47026b73d.dvi b/tests/tests_cache/writing/TexMobjectTest/Tex/cd02c6a47026b73d.dvi deleted file mode 100644 index 5c845b360c..0000000000 Binary files a/tests/tests_cache/writing/TexMobjectTest/Tex/cd02c6a47026b73d.dvi and /dev/null differ diff --git a/tests/tests_cache/writing/TexMobjectTest/Tex/cd02c6a47026b73d.svg b/tests/tests_cache/writing/TexMobjectTest/Tex/cd02c6a47026b73d.svg deleted file mode 100644 index bac9a91908..0000000000 --- a/tests/tests_cache/writing/TexMobjectTest/Tex/cd02c6a47026b73d.svg +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tests/tests_cache/writing/TexMobjectTest/Tex/cd02c6a47026b73d.tex b/tests/tests_cache/writing/TexMobjectTest/Tex/cd02c6a47026b73d.tex deleted file mode 100644 index 278c85c5b7..0000000000 --- a/tests/tests_cache/writing/TexMobjectTest/Tex/cd02c6a47026b73d.tex +++ /dev/null @@ -1,10 +0,0 @@ -\documentclass[preview]{standalone}\usepackage[english]{babel}\usepackage{amsmath}\usepackage{amssymb}\usepackage{dsfont}\usepackage{setspace}\usepackage{tipa}\usepackage{relsize}\usepackage{textcomp}\usepackage{mathrsfs}\usepackage{calligra}\usepackage{wasysym}\usepackage{ragged2e}\usepackage{physics}\usepackage{xcolor}\usepackage{microtype}\linespread{1} -\DisableLigatures{encoding = *, family = *} - -\begin{document} - -\begin{align*} -\sum_{n=1}^\infty \frac{1}{n^2} = \frac{\pi^2}{6} -\end{align*} - -\end{document} \ No newline at end of file diff --git a/tests/tests_cache/writing/TexMobjectTest/Tex/ebc532caee153e1a.aux b/tests/tests_cache/writing/TexMobjectTest/Tex/ebc532caee153e1a.aux deleted file mode 100644 index 9c28a69b61..0000000000 --- a/tests/tests_cache/writing/TexMobjectTest/Tex/ebc532caee153e1a.aux +++ /dev/null @@ -1,2 +0,0 @@ -\relax -\@nameuse{bbl@beforestart} diff --git a/tests/tests_cache/writing/TexMobjectTest/Tex/ebc532caee153e1a.dvi b/tests/tests_cache/writing/TexMobjectTest/Tex/ebc532caee153e1a.dvi deleted file mode 100644 index a137437893..0000000000 Binary files a/tests/tests_cache/writing/TexMobjectTest/Tex/ebc532caee153e1a.dvi and /dev/null differ diff --git a/tests/tests_cache/writing/TexMobjectTest/Tex/ebc532caee153e1a.svg b/tests/tests_cache/writing/TexMobjectTest/Tex/ebc532caee153e1a.svg deleted file mode 100644 index 19b4350a92..0000000000 --- a/tests/tests_cache/writing/TexMobjectTest/Tex/ebc532caee153e1a.svg +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tests/tests_cache/writing/TexMobjectTest/Tex/ebc532caee153e1a.tex b/tests/tests_cache/writing/TexMobjectTest/Tex/ebc532caee153e1a.tex deleted file mode 100644 index ddfad7bab1..0000000000 --- a/tests/tests_cache/writing/TexMobjectTest/Tex/ebc532caee153e1a.tex +++ /dev/null @@ -1,30 +0,0 @@ -\documentclass[preview]{standalone} - -\usepackage[english]{babel} -\usepackage[utf8]{inputenc} -\usepackage[T1]{fontenc} -\usepackage{amsmath} -\usepackage{amssymb} -\usepackage{dsfont} -\usepackage{setspace} -\usepackage{tipa} -\usepackage{relsize} -\usepackage{textcomp} -\usepackage{mathrsfs} -\usepackage{calligra} -\usepackage{wasysym} -\usepackage{ragged2e} -\usepackage{physics} -\usepackage{xcolor} -\usepackage{microtype} -\DisableLigatures{encoding = *, family = * } -%\usepackage[UTF8]{ctex} -\linespread{1} - -\begin{document} - -\begin{align*} -\sum_{n=1}^\infty \frac{1}{n^2} = \frac{\pi^2}{6} -\end{align*} - -\end{document} diff --git a/tests/tests_cache/writing/TextMobjectTest/Tex/c8dd851bb4f17024.aux b/tests/tests_cache/writing/TextMobjectTest/Tex/c8dd851bb4f17024.aux deleted file mode 100644 index 9c28a69b61..0000000000 --- a/tests/tests_cache/writing/TextMobjectTest/Tex/c8dd851bb4f17024.aux +++ /dev/null @@ -1,2 +0,0 @@ -\relax -\@nameuse{bbl@beforestart} diff --git a/tests/tests_cache/writing/TextMobjectTest/Tex/c8dd851bb4f17024.dvi b/tests/tests_cache/writing/TextMobjectTest/Tex/c8dd851bb4f17024.dvi deleted file mode 100644 index 8366a80189..0000000000 Binary files a/tests/tests_cache/writing/TextMobjectTest/Tex/c8dd851bb4f17024.dvi and /dev/null differ diff --git a/tests/tests_cache/writing/TextMobjectTest/Tex/c8dd851bb4f17024.svg b/tests/tests_cache/writing/TextMobjectTest/Tex/c8dd851bb4f17024.svg deleted file mode 100644 index 656deadbda..0000000000 --- a/tests/tests_cache/writing/TextMobjectTest/Tex/c8dd851bb4f17024.svg +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tests/tests_cache/writing/TextMobjectTest/Tex/c8dd851bb4f17024.tex b/tests/tests_cache/writing/TextMobjectTest/Tex/c8dd851bb4f17024.tex deleted file mode 100644 index 35e6d406ee..0000000000 --- a/tests/tests_cache/writing/TextMobjectTest/Tex/c8dd851bb4f17024.tex +++ /dev/null @@ -1,8 +0,0 @@ -\documentclass[preview]{standalone}\usepackage[english]{babel}\usepackage{amsmath}\usepackage{amssymb}\usepackage{dsfont}\usepackage{setspace}\usepackage{tipa}\usepackage{relsize}\usepackage{textcomp}\usepackage{mathrsfs}\usepackage{calligra}\usepackage{wasysym}\usepackage{ragged2e}\usepackage{physics}\usepackage{xcolor}\usepackage{microtype}\linespread{1} -\DisableLigatures{encoding = *, family = *} - -\begin{document} - -Hello world ! - -\end{document} \ No newline at end of file diff --git a/tests/tests_cache/writing/TextMobjectTest/Tex/c93e3abf7cf78db1.aux b/tests/tests_cache/writing/TextMobjectTest/Tex/c93e3abf7cf78db1.aux deleted file mode 100644 index 9c28a69b61..0000000000 --- a/tests/tests_cache/writing/TextMobjectTest/Tex/c93e3abf7cf78db1.aux +++ /dev/null @@ -1,2 +0,0 @@ -\relax -\@nameuse{bbl@beforestart} diff --git a/tests/tests_cache/writing/TextMobjectTest/Tex/c93e3abf7cf78db1.dvi b/tests/tests_cache/writing/TextMobjectTest/Tex/c93e3abf7cf78db1.dvi deleted file mode 100644 index c14f92ef60..0000000000 Binary files a/tests/tests_cache/writing/TextMobjectTest/Tex/c93e3abf7cf78db1.dvi and /dev/null differ diff --git a/tests/tests_cache/writing/TextMobjectTest/Tex/c93e3abf7cf78db1.svg b/tests/tests_cache/writing/TextMobjectTest/Tex/c93e3abf7cf78db1.svg deleted file mode 100644 index d2b476e25d..0000000000 --- a/tests/tests_cache/writing/TextMobjectTest/Tex/c93e3abf7cf78db1.svg +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tests/tests_cache/writing/TextMobjectTest/Tex/c93e3abf7cf78db1.tex b/tests/tests_cache/writing/TextMobjectTest/Tex/c93e3abf7cf78db1.tex deleted file mode 100644 index 1c5d7f4aab..0000000000 --- a/tests/tests_cache/writing/TextMobjectTest/Tex/c93e3abf7cf78db1.tex +++ /dev/null @@ -1,8 +0,0 @@ -\documentclass[preview]{standalone}\usepackage[english]{babel}\usepackage{amsmath}\usepackage{amssymb}\usepackage{dsfont}\usepackage{setspace}\usepackage{tipa}\usepackage{relsize}\usepackage{textcomp}\usepackage{mathrsfs}\usepackage{calligra}\usepackage{wasysym}\usepackage{ragged2e}\usepackage{physics}\usepackage{xcolor}\usepackage{microtype}\linespread{1} -\DisableLigatures{encoding = *, family = *} - -\begin{document} - -\centering Hello world ! - -\end{document} \ No newline at end of file diff --git a/tests/tests_cache/writing/TextTest/Text/1d47a07ea0ff0ea8.svg b/tests/tests_cache/writing/TextTest/Text/1d47a07ea0ff0ea8.svg deleted file mode 100644 index ab8ad5aeee..0000000000 --- a/tests/tests_cache/writing/TextTest/Text/1d47a07ea0ff0ea8.svg +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tests/tests_cache/writing/TextTest/Text/770a265b40ff9104.svg b/tests/tests_cache/writing/TextTest/Text/770a265b40ff9104.svg deleted file mode 100644 index 6f88fbda01..0000000000 --- a/tests/tests_cache/writing/TextTest/Text/770a265b40ff9104.svg +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tests/tests_cache/writing/TextTest/Text/f3605000a86a4a1c.svg b/tests/tests_cache/writing/TextTest/Text/f3605000a86a4a1c.svg deleted file mode 100644 index 2c1bc2a9be..0000000000 --- a/tests/tests_cache/writing/TextTest/Text/f3605000a86a4a1c.svg +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tests/tests_cache/writing/TextTest/Text/fdc1d31b6ce03692.svg b/tests/tests_cache/writing/TextTest/Text/fdc1d31b6ce03692.svg deleted file mode 100644 index d8c7692ae6..0000000000 --- a/tests/tests_cache/writing/TextTest/Text/fdc1d31b6ce03692.svg +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tests/tests_cache/writing/TextTest/Text/space.svg b/tests/tests_cache/writing/TextTest/Text/space.svg deleted file mode 100644 index 04356bce9d..0000000000 --- a/tests/tests_cache/writing/TextTest/Text/space.svg +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/tests/tests_data/creation/DrawBorderThenFillTest.npy b/tests/tests_data/creation/DrawBorderThenFillTest.npy deleted file mode 100644 index ccfc7f8aa1..0000000000 Binary files a/tests/tests_data/creation/DrawBorderThenFillTest.npy and /dev/null differ diff --git a/tests/tests_data/creation/FadeInFromDownTest.npy b/tests/tests_data/creation/FadeInFromDownTest.npy deleted file mode 100644 index 2d2fb7cc2a..0000000000 Binary files a/tests/tests_data/creation/FadeInFromDownTest.npy and /dev/null differ diff --git a/tests/tests_data/creation/FadeInFromLargeTest.npy b/tests/tests_data/creation/FadeInFromLargeTest.npy deleted file mode 100644 index 2d2fb7cc2a..0000000000 Binary files a/tests/tests_data/creation/FadeInFromLargeTest.npy and /dev/null differ diff --git a/tests/tests_data/creation/FadeInFromTest.npy b/tests/tests_data/creation/FadeInFromTest.npy deleted file mode 100644 index 2d2fb7cc2a..0000000000 Binary files a/tests/tests_data/creation/FadeInFromTest.npy and /dev/null differ diff --git a/tests/tests_data/creation/FadeInTest.npy b/tests/tests_data/creation/FadeInTest.npy deleted file mode 100644 index 2d2fb7cc2a..0000000000 Binary files a/tests/tests_data/creation/FadeInTest.npy and /dev/null differ diff --git a/tests/tests_data/creation/FadeOutAndShiftTest.npy b/tests/tests_data/creation/FadeOutAndShiftTest.npy deleted file mode 100644 index de3abcab7b..0000000000 Binary files a/tests/tests_data/creation/FadeOutAndShiftTest.npy and /dev/null differ diff --git a/tests/tests_data/creation/FadeOutTest.npy b/tests/tests_data/creation/FadeOutTest.npy deleted file mode 100644 index de3abcab7b..0000000000 Binary files a/tests/tests_data/creation/FadeOutTest.npy and /dev/null differ diff --git a/tests/tests_data/creation/GrowFromCenterTest.npy b/tests/tests_data/creation/GrowFromCenterTest.npy deleted file mode 100644 index 2d2fb7cc2a..0000000000 Binary files a/tests/tests_data/creation/GrowFromCenterTest.npy and /dev/null differ diff --git a/tests/tests_data/creation/GrowFromEdgeTest.npy b/tests/tests_data/creation/GrowFromEdgeTest.npy deleted file mode 100644 index 2d2fb7cc2a..0000000000 Binary files a/tests/tests_data/creation/GrowFromEdgeTest.npy and /dev/null differ diff --git a/tests/tests_data/creation/GrowFromPointTest.npy b/tests/tests_data/creation/GrowFromPointTest.npy deleted file mode 100644 index 2d2fb7cc2a..0000000000 Binary files a/tests/tests_data/creation/GrowFromPointTest.npy and /dev/null differ diff --git a/tests/tests_data/creation/ShowCreationTest.npy b/tests/tests_data/creation/ShowCreationTest.npy deleted file mode 100644 index 2d2fb7cc2a..0000000000 Binary files a/tests/tests_data/creation/ShowCreationTest.npy and /dev/null differ diff --git a/tests/tests_data/creation/ShrinkToCenterTest.npy b/tests/tests_data/creation/ShrinkToCenterTest.npy deleted file mode 100644 index de3abcab7b..0000000000 Binary files a/tests/tests_data/creation/ShrinkToCenterTest.npy and /dev/null differ diff --git a/tests/tests_data/creation/SpinInFromNothingTest.npy b/tests/tests_data/creation/SpinInFromNothingTest.npy deleted file mode 100644 index 2d2fb7cc2a..0000000000 Binary files a/tests/tests_data/creation/SpinInFromNothingTest.npy and /dev/null differ diff --git a/tests/tests_data/creation/UncreateTest.npy b/tests/tests_data/creation/UncreateTest.npy deleted file mode 100644 index de3abcab7b..0000000000 Binary files a/tests/tests_data/creation/UncreateTest.npy and /dev/null differ diff --git a/tests/tests_data/creation/WriteTest.npy b/tests/tests_data/creation/WriteTest.npy deleted file mode 100644 index e835795e1f..0000000000 Binary files a/tests/tests_data/creation/WriteTest.npy and /dev/null differ diff --git a/tests/tests_data/geometry/AnnularSectorTest.npy b/tests/tests_data/geometry/AnnularSectorTest.npy deleted file mode 100644 index a15aa12443..0000000000 Binary files a/tests/tests_data/geometry/AnnularSectorTest.npy and /dev/null differ diff --git a/tests/tests_data/geometry/AnnulusTest.npy b/tests/tests_data/geometry/AnnulusTest.npy deleted file mode 100644 index 7cb120b272..0000000000 Binary files a/tests/tests_data/geometry/AnnulusTest.npy and /dev/null differ diff --git a/tests/tests_data/geometry/ArcBetweenPointsTest.npy b/tests/tests_data/geometry/ArcBetweenPointsTest.npy deleted file mode 100644 index cc3ae52178..0000000000 Binary files a/tests/tests_data/geometry/ArcBetweenPointsTest.npy and /dev/null differ diff --git a/tests/tests_data/geometry/ArcTest.npy b/tests/tests_data/geometry/ArcTest.npy deleted file mode 100644 index 7541b40f30..0000000000 Binary files a/tests/tests_data/geometry/ArcTest.npy and /dev/null differ diff --git a/tests/tests_data/geometry/CircleTest.npy b/tests/tests_data/geometry/CircleTest.npy deleted file mode 100644 index 78f0f70f98..0000000000 Binary files a/tests/tests_data/geometry/CircleTest.npy and /dev/null differ diff --git a/tests/tests_data/geometry/CoordinatesTest.npy b/tests/tests_data/geometry/CoordinatesTest.npy deleted file mode 100644 index b4632579e7..0000000000 Binary files a/tests/tests_data/geometry/CoordinatesTest.npy and /dev/null differ diff --git a/tests/tests_data/geometry/CurvedArrowTest.npy b/tests/tests_data/geometry/CurvedArrowTest.npy deleted file mode 100644 index 4ce7413722..0000000000 Binary files a/tests/tests_data/geometry/CurvedArrowTest.npy and /dev/null differ diff --git a/tests/tests_data/geometry/DotTest.npy b/tests/tests_data/geometry/DotTest.npy deleted file mode 100644 index 5151b856c2..0000000000 Binary files a/tests/tests_data/geometry/DotTest.npy and /dev/null differ diff --git a/tests/tests_data/geometry/DoubleArrowTest.npy b/tests/tests_data/geometry/DoubleArrowTest.npy deleted file mode 100644 index 05be3f1d7e..0000000000 Binary files a/tests/tests_data/geometry/DoubleArrowTest.npy and /dev/null differ diff --git a/tests/tests_data/geometry/Elbowtest.npy b/tests/tests_data/geometry/Elbowtest.npy deleted file mode 100644 index 2fb455aa49..0000000000 Binary files a/tests/tests_data/geometry/Elbowtest.npy and /dev/null differ diff --git a/tests/tests_data/geometry/EllipseTest.npy b/tests/tests_data/geometry/EllipseTest.npy deleted file mode 100644 index ad08e2d8b9..0000000000 Binary files a/tests/tests_data/geometry/EllipseTest.npy and /dev/null differ diff --git a/tests/tests_data/geometry/LineTest.npy b/tests/tests_data/geometry/LineTest.npy deleted file mode 100644 index 2dcd9b595d..0000000000 Binary files a/tests/tests_data/geometry/LineTest.npy and /dev/null differ diff --git a/tests/tests_data/geometry/PolygonTest.npy b/tests/tests_data/geometry/PolygonTest.npy deleted file mode 100644 index a7bb8e92c7..0000000000 Binary files a/tests/tests_data/geometry/PolygonTest.npy and /dev/null differ diff --git a/tests/tests_data/geometry/RectangleTest.npy b/tests/tests_data/geometry/RectangleTest.npy deleted file mode 100644 index 650779206a..0000000000 Binary files a/tests/tests_data/geometry/RectangleTest.npy and /dev/null differ diff --git a/tests/tests_data/geometry/RoundedRectangleTest.npy b/tests/tests_data/geometry/RoundedRectangleTest.npy deleted file mode 100644 index 4c73433bf8..0000000000 Binary files a/tests/tests_data/geometry/RoundedRectangleTest.npy and /dev/null differ diff --git a/tests/tests_data/geometry/SectorTest.npy b/tests/tests_data/geometry/SectorTest.npy deleted file mode 100644 index c5ea54e633..0000000000 Binary files a/tests/tests_data/geometry/SectorTest.npy and /dev/null differ diff --git a/tests/tests_data/geometry/VectorTest.npy b/tests/tests_data/geometry/VectorTest.npy deleted file mode 100644 index 70c3ab7eba..0000000000 Binary files a/tests/tests_data/geometry/VectorTest.npy and /dev/null differ diff --git a/tests/tests_data/graph/PlotFunctions.npy b/tests/tests_data/graph/PlotFunctions.npy deleted file mode 100644 index 9b1079088a..0000000000 Binary files a/tests/tests_data/graph/PlotFunctions.npy and /dev/null differ diff --git a/tests/tests_data/indication/ApplyWaveTest.npy b/tests/tests_data/indication/ApplyWaveTest.npy deleted file mode 100644 index 2d2fb7cc2a..0000000000 Binary files a/tests/tests_data/indication/ApplyWaveTest.npy and /dev/null differ diff --git a/tests/tests_data/indication/CircleIndicateTest.npy b/tests/tests_data/indication/CircleIndicateTest.npy deleted file mode 100644 index 2d2fb7cc2a..0000000000 Binary files a/tests/tests_data/indication/CircleIndicateTest.npy and /dev/null differ diff --git a/tests/tests_data/indication/FlashTest.npy b/tests/tests_data/indication/FlashTest.npy deleted file mode 100644 index 2d2fb7cc2a..0000000000 Binary files a/tests/tests_data/indication/FlashTest.npy and /dev/null differ diff --git a/tests/tests_data/indication/FocusOnTest.npy b/tests/tests_data/indication/FocusOnTest.npy deleted file mode 100644 index 2d2fb7cc2a..0000000000 Binary files a/tests/tests_data/indication/FocusOnTest.npy and /dev/null differ diff --git a/tests/tests_data/indication/IndicateTest.npy b/tests/tests_data/indication/IndicateTest.npy deleted file mode 100644 index 2d2fb7cc2a..0000000000 Binary files a/tests/tests_data/indication/IndicateTest.npy and /dev/null differ diff --git a/tests/tests_data/indication/ShowCreationThenDestructionTest.npy b/tests/tests_data/indication/ShowCreationThenDestructionTest.npy deleted file mode 100644 index de3abcab7b..0000000000 Binary files a/tests/tests_data/indication/ShowCreationThenDestructionTest.npy and /dev/null differ diff --git a/tests/tests_data/indication/ShowCreationThenFadeOutTest.npy b/tests/tests_data/indication/ShowCreationThenFadeOutTest.npy deleted file mode 100644 index de3abcab7b..0000000000 Binary files a/tests/tests_data/indication/ShowCreationThenFadeOutTest.npy and /dev/null differ diff --git a/tests/tests_data/indication/ShowPassingFlashAroundTest.npy b/tests/tests_data/indication/ShowPassingFlashAroundTest.npy deleted file mode 100644 index de3abcab7b..0000000000 Binary files a/tests/tests_data/indication/ShowPassingFlashAroundTest.npy and /dev/null differ diff --git a/tests/tests_data/indication/ShowPassingFlashTest.npy b/tests/tests_data/indication/ShowPassingFlashTest.npy deleted file mode 100644 index de3abcab7b..0000000000 Binary files a/tests/tests_data/indication/ShowPassingFlashTest.npy and /dev/null differ diff --git a/tests/tests_data/indication/TurnInsideOutTest.npy b/tests/tests_data/indication/TurnInsideOutTest.npy deleted file mode 100644 index 2d2fb7cc2a..0000000000 Binary files a/tests/tests_data/indication/TurnInsideOutTest.npy and /dev/null differ diff --git a/tests/tests_data/indication/WiggleOutThenInTest.npy b/tests/tests_data/indication/WiggleOutThenInTest.npy deleted file mode 100644 index 2d2fb7cc2a..0000000000 Binary files a/tests/tests_data/indication/WiggleOutThenInTest.npy and /dev/null differ diff --git a/tests/tests_data/manim.cfg b/tests/tests_data/manim.cfg deleted file mode 100644 index 573960fff3..0000000000 --- a/tests/tests_data/manim.cfg +++ /dev/null @@ -1,6 +0,0 @@ -[CLI] -movie_file_extension = .mp4 -write_to_movie = True -# write_all = False -save_last_frame = False -# save_pngs = False diff --git a/tests/tests_data/movements/HomotopyTest.npy b/tests/tests_data/movements/HomotopyTest.npy deleted file mode 100644 index 60af6c7b6b..0000000000 Binary files a/tests/tests_data/movements/HomotopyTest.npy and /dev/null differ diff --git a/tests/tests_data/movements/MoveAlongPathTest.npy b/tests/tests_data/movements/MoveAlongPathTest.npy deleted file mode 100644 index a531aa13ba..0000000000 Binary files a/tests/tests_data/movements/MoveAlongPathTest.npy and /dev/null differ diff --git a/tests/tests_data/movements/MoveToTest.npy b/tests/tests_data/movements/MoveToTest.npy deleted file mode 100644 index 4f22b1523e..0000000000 Binary files a/tests/tests_data/movements/MoveToTest.npy and /dev/null differ diff --git a/tests/tests_data/movements/PhaseFlowTest.npy b/tests/tests_data/movements/PhaseFlowTest.npy deleted file mode 100644 index cbc3eb5974..0000000000 Binary files a/tests/tests_data/movements/PhaseFlowTest.npy and /dev/null differ diff --git a/tests/tests_data/movements/RotateTest.npy b/tests/tests_data/movements/RotateTest.npy deleted file mode 100644 index 2d2fb7cc2a..0000000000 Binary files a/tests/tests_data/movements/RotateTest.npy and /dev/null differ diff --git a/tests/tests_data/movements/ShiftTest.npy b/tests/tests_data/movements/ShiftTest.npy deleted file mode 100644 index 67bb448cb9..0000000000 Binary files a/tests/tests_data/movements/ShiftTest.npy and /dev/null differ diff --git a/tests/tests_data/sample_scenes/BasicScene.npy b/tests/tests_data/sample_scenes/BasicScene.npy deleted file mode 100644 index 2d2fb7cc2a..0000000000 Binary files a/tests/tests_data/sample_scenes/BasicScene.npy and /dev/null differ diff --git a/tests/tests_data/sample_scenes/BasicTex.npy b/tests/tests_data/sample_scenes/BasicTex.npy deleted file mode 100644 index 188dd5e2d4..0000000000 Binary files a/tests/tests_data/sample_scenes/BasicTex.npy and /dev/null differ diff --git a/tests/tests_data/sample_scenes/GeometryScene.npy b/tests/tests_data/sample_scenes/GeometryScene.npy deleted file mode 100644 index 1f0353683a..0000000000 Binary files a/tests/tests_data/sample_scenes/GeometryScene.npy and /dev/null differ diff --git a/tests/tests_data/threed/AmbientCameraMoveTest.npy b/tests/tests_data/threed/AmbientCameraMoveTest.npy deleted file mode 100644 index 001d7c56fa..0000000000 Binary files a/tests/tests_data/threed/AmbientCameraMoveTest.npy and /dev/null differ diff --git a/tests/tests_data/threed/AxesTest.npy b/tests/tests_data/threed/AxesTest.npy deleted file mode 100644 index 0cb1f4e3e8..0000000000 Binary files a/tests/tests_data/threed/AxesTest.npy and /dev/null differ diff --git a/tests/tests_data/threed/CameraMoveTest.npy b/tests/tests_data/threed/CameraMoveTest.npy deleted file mode 100644 index 515e608e07..0000000000 Binary files a/tests/tests_data/threed/CameraMoveTest.npy and /dev/null differ diff --git a/tests/tests_data/threed/CubeTest.npy b/tests/tests_data/threed/CubeTest.npy deleted file mode 100644 index 31df75ae63..0000000000 Binary files a/tests/tests_data/threed/CubeTest.npy and /dev/null differ diff --git a/tests/tests_data/threed/SphereTest.npy b/tests/tests_data/threed/SphereTest.npy deleted file mode 100644 index afb6a1d984..0000000000 Binary files a/tests/tests_data/threed/SphereTest.npy and /dev/null differ diff --git a/tests/tests_data/transform/ApplyComplexFunctionTest.npy b/tests/tests_data/transform/ApplyComplexFunctionTest.npy deleted file mode 100644 index ebd7959608..0000000000 Binary files a/tests/tests_data/transform/ApplyComplexFunctionTest.npy and /dev/null differ diff --git a/tests/tests_data/transform/ApplyFunctionTest.npy b/tests/tests_data/transform/ApplyFunctionTest.npy deleted file mode 100644 index a22156c7dc..0000000000 Binary files a/tests/tests_data/transform/ApplyFunctionTest.npy and /dev/null differ diff --git a/tests/tests_data/transform/ApplyMatrixTest.npy b/tests/tests_data/transform/ApplyMatrixTest.npy deleted file mode 100644 index e3f12518a8..0000000000 Binary files a/tests/tests_data/transform/ApplyMatrixTest.npy and /dev/null differ diff --git a/tests/tests_data/transform/ApplyPointwiseFunctionTest.npy b/tests/tests_data/transform/ApplyPointwiseFunctionTest.npy deleted file mode 100644 index de3abcab7b..0000000000 Binary files a/tests/tests_data/transform/ApplyPointwiseFunctionTest.npy and /dev/null differ diff --git a/tests/tests_data/transform/ClockwiseTransformTest.npy b/tests/tests_data/transform/ClockwiseTransformTest.npy deleted file mode 100644 index 78f0f70f98..0000000000 Binary files a/tests/tests_data/transform/ClockwiseTransformTest.npy and /dev/null differ diff --git a/tests/tests_data/transform/CounterclockwiseTransformTest.npy b/tests/tests_data/transform/CounterclockwiseTransformTest.npy deleted file mode 100644 index 78f0f70f98..0000000000 Binary files a/tests/tests_data/transform/CounterclockwiseTransformTest.npy and /dev/null differ diff --git a/tests/tests_data/transform/CyclicReplaceTest.npy b/tests/tests_data/transform/CyclicReplaceTest.npy deleted file mode 100644 index 0cab724b1b..0000000000 Binary files a/tests/tests_data/transform/CyclicReplaceTest.npy and /dev/null differ diff --git a/tests/tests_data/transform/FadeToColortTest.npy b/tests/tests_data/transform/FadeToColortTest.npy deleted file mode 100644 index f303647c02..0000000000 Binary files a/tests/tests_data/transform/FadeToColortTest.npy and /dev/null differ diff --git a/tests/tests_data/transform/MoveToTargetTest.npy b/tests/tests_data/transform/MoveToTargetTest.npy deleted file mode 100644 index e16b35b0a5..0000000000 Binary files a/tests/tests_data/transform/MoveToTargetTest.npy and /dev/null differ diff --git a/tests/tests_data/transform/RestoreTest.npy b/tests/tests_data/transform/RestoreTest.npy deleted file mode 100644 index 78f0f70f98..0000000000 Binary files a/tests/tests_data/transform/RestoreTest.npy and /dev/null differ diff --git a/tests/tests_data/transform/ScaleInPlaceTest.npy b/tests/tests_data/transform/ScaleInPlaceTest.npy deleted file mode 100644 index 50da222f5c..0000000000 Binary files a/tests/tests_data/transform/ScaleInPlaceTest.npy and /dev/null differ diff --git a/tests/tests_data/transform/ShrinkToCenterTest.npy b/tests/tests_data/transform/ShrinkToCenterTest.npy deleted file mode 100644 index de3abcab7b..0000000000 Binary files a/tests/tests_data/transform/ShrinkToCenterTest.npy and /dev/null differ diff --git a/tests/tests_data/transform/TransformFromCopyTest.npy b/tests/tests_data/transform/TransformFromCopyTest.npy deleted file mode 100644 index 78f0f70f98..0000000000 Binary files a/tests/tests_data/transform/TransformFromCopyTest.npy and /dev/null differ diff --git a/tests/tests_data/transform/TransformTest.npy b/tests/tests_data/transform/TransformTest.npy deleted file mode 100644 index 78f0f70f98..0000000000 Binary files a/tests/tests_data/transform/TransformTest.npy and /dev/null differ diff --git a/tests/tests_data/updaters/UpdaterTest.npy b/tests/tests_data/updaters/UpdaterTest.npy deleted file mode 100644 index b0b48565c5..0000000000 Binary files a/tests/tests_data/updaters/UpdaterTest.npy and /dev/null differ diff --git a/tests/tests_data/updaters/ValueTrackerTest.npy b/tests/tests_data/updaters/ValueTrackerTest.npy deleted file mode 100644 index de3abcab7b..0000000000 Binary files a/tests/tests_data/updaters/ValueTrackerTest.npy and /dev/null differ diff --git a/tests/tests_data/writing/TexMobjectTest.npy b/tests/tests_data/writing/TexMobjectTest.npy deleted file mode 100644 index 83cde8237d..0000000000 Binary files a/tests/tests_data/writing/TexMobjectTest.npy and /dev/null differ diff --git a/tests/tests_data/writing/TextMobjectTest.npy b/tests/tests_data/writing/TextMobjectTest.npy deleted file mode 100644 index 9f85ae15c7..0000000000 Binary files a/tests/tests_data/writing/TextMobjectTest.npy and /dev/null differ diff --git a/tests/tests_data/writing/TextTest.npy b/tests/tests_data/writing/TextTest.npy deleted file mode 100644 index b3e2559e23..0000000000 Binary files a/tests/tests_data/writing/TextTest.npy and /dev/null differ