mirror of
https://github.com/microsoft/debugpy.git
synced 2025-12-23 08:48:12 +00:00
- implicit freezing on wait - wait_for_next() and expect_new() - unobserved occurrences checking - timeline slicing into intervals - queue-based timeline for accurate timestamps - finer-grained timeline tests - tighen up ptvsd tests - pretty colors!
17 lines
No EOL
515 B
Python
17 lines
No EOL
515 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('pytests.helpers') |