mirror of
https://github.com/microsoft/debugpy.git
synced 2025-12-23 08:48:12 +00:00
17 lines
No EOL
513 B
Python
17 lines
No EOL
513 B
Python
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
# Licensed under the MIT License. See LICENSE in the project root
|
|
# for license information.
|
|
|
|
__doc__ = """pytest-based ptvsd tests."""
|
|
|
|
import colorama
|
|
import pytest
|
|
|
|
# This is only imported to ensure that the module is actually installed and the
|
|
# timeout setting in pytest.ini is active, since otherwise most timeline-based
|
|
# tests will hang indefinitely.
|
|
import pytest_timeout # noqa
|
|
|
|
|
|
colorama.init()
|
|
pytest.register_assert_rewrite('tests.helpers') |