Completed
Push — master ( dfc669...747f62 )
by Raphael
07:12
created

test.test()   A

Complexity

Conditions 2

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %
Metric Value
cc 2
dl 0
loc 3
rs 10
1
#!/usr/bin/env python
2
# -*- coding: utf-8 -*-
3
4
from func import run_experiment, ERROR_KEYWORD
5
6
7
def test():
8
    result = run_experiment("tutorials/tutorial1.py", timeout=30)
9
    assert ERROR_KEYWORD not in result
10