manim/tests/test_logging/basic_scenes_error.py
friedkeenan 1b32bce0c2
Output errors to stderr (#1570)
* Add error_console, output correct exit status

* Try to start Github Actions

* Fix spelling and isort

* Use python_version fixture
2021-05-25 10:30:31 +05:30

8 lines
162 B
Python

from manim import *
# This module is intended to raise an error.
class Error(Scene):
def construct(self):
raise Exception("An error has occurred")