Passed
Push — main ( bfa577...eb6882 )
by Douglas
04:37
created

tests.search.chembl.test_go_search   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 21
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 14
dl 0
loc 21
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A TestGoSearch.test_find() 0 7 1
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 mandos.cli import Commands
4
from mandos.search.chembl.go_search import GoType
5
6
from .. import get_test_resource
7
8
9
class TestGoSearch:
0 ignored issues
show
introduced by
Missing class docstring
Loading history...
10
    def test_find(self):
0 ignored issues
show
introduced by
Missing function or method docstring
Loading history...
Coding Style introduced by
This method could be written as a function/class method.

If a method does not access any attributes of the class, it could also be implemented as a function or static method. This can help improve readability. For example

class Foo:
    def some_method(self, x, y):
        return x + y;

could be written as

class Foo:
    @classmethod
    def some_method(cls, x, y):
        return x + y;
Loading history...
11
        df, triples = Commands.go_search(get_test_resource("inchis.txt"), GoType.function)
0 ignored issues
show
Coding Style Naming introduced by
Variable name "df" doesn't conform to snake_case naming style ('([^\\W\\dA-Z][^\\WA-Z]2,|_[^\\WA-Z]*|__[^\\WA-Z\\d_][^\\WA-Z]+__)$' pattern)

This check looks for invalid names for a range of different identifiers.

You can set regular expressions to which the identifiers must conform if the defaults do not match your requirements.

If your project includes a Pylint configuration file, the settings contained in that file take precedence.

To find out more about Pylint, please refer to their site.

Loading history...
12
        assert len(df) == 20
13
        assert len(triples) == 20
14
        # TODO not very complete
0 ignored issues
show
Coding Style introduced by
TODO and FIXME comments should generally be avoided.
Loading history...
15
        assert {t.compound_name.lower() for t in triples} == {"alprazolam"}
16
        assert {t.predicate for t in triples} == {"has GO function term"}
17
18
19
if __name__ == "__main__":
20
    pytest.main()
21