chia-blockchain/tests/core/test_setproctitle.py
Kyle Altendorf 3b084a165b
configure isort to add the future annotations import (#13327)
* configure isort to add the future annotations import

* apply the new isort setting

* remove type ignores for new mypy (#13539)

https://pypi.org/project/mypy/0.981/

* another
2022-09-30 03:40:22 -05:00

14 lines
311 B
Python

from __future__ import annotations
import pytest
from chia.util.setproctitle import setproctitle
pytestmark = pytest.mark.skip(
reason="this test ends up hanging frequently and needs to be rewritten with a subprocess and a title check",
)
def test_does_not_crash():
setproctitle("chia test title")