File tree Expand file tree Collapse file tree 3 files changed +9
-0
lines changed Expand file tree Collapse file tree 3 files changed +9
-0
lines changed Original file line number Diff line number Diff line change 11"""init.py: defines importable classes."""
2+ from loguru import logger
3+
24from .chordnet import ChordNet
35
6+ logger .disable ("chordnet" )
7+
48__all__ = ['ChordNet' ]
Original file line number Diff line number Diff line change 99from unittest .mock import MagicMock , Mock , patch
1010
1111import pytest
12+ from loguru import logger
1213
1314from chordnet ._net import _Net
1415
16+ logger .enable ("chordnet" )
17+
1518
1619def test_net_initialization () -> None :
1720 """Verifies the initial state of a _Net instance.
Original file line number Diff line number Diff line change 88from unittest .mock import MagicMock , patch
99
1010import pytest
11+ from loguru import logger
1112
1213from chordnet ._node import _Node as ChordNode
1314from chordnet .address import Address
1415
16+ logger .enable ("chordnet" )
1517# Global test variables
1618ip : str = "1.2.3.4"
1719port : int = 5
You can’t perform that action at this time.
0 commit comments