Passed
Push — main ( 81ca09...979ada )
by Douglas
01:38
created

TestSysTools.test_add_signals()   A

Complexity

Conditions 1

Size

Total Lines 2
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nop 1
dl 0
loc 2
rs 10
c 0
b 0
f 0
1
import pytest
0 ignored issues
show
introduced by
Missing module docstring
Loading history...
introduced by
Unable to import 'pytest'
Loading history...
2
3
from pocketutils.tools.sys_tools import SystemTools
0 ignored issues
show
Unused Code introduced by
Unused SystemTools imported from pocketutils.tools.sys_tools
Loading history...
4
5
6
class TestSysTools:
0 ignored issues
show
introduced by
Missing class docstring
Loading history...
7
    def test_add_signals(self):
0 ignored issues
show
introduced by
Missing function or method docstring
Loading history...
8
        pass
9
10
11
if __name__ == "__main__":
12
    pytest.main()
13