Passed
Push — master ( cf9bea...be9f2b )
by Simon
02:13
created

tests._test_classes   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 11
dl 0
loc 18
rs 10
c 0
b 0
f 0

1 Function

Rating   Name   Duplication   Size   Complexity  
A test_classes() 0 5 1
1
# Author: Simon Blanke
2
# Email: [email protected]
3
# License: MIT License
4
5
from hyperactive import Hyperactive, Hydra, Iota, Insight, MetaLearn
6
from sklearn.datasets import load_iris
7
8
data = load_iris()
9
X = data.data
10
y = data.target
11
12
13
def test_classes():
14
    insight = Insight(X, y)
15
    insight._get_data_type()
16
    hydra = Hydra()
17
    iota = Iota()
18