Build: #663 failed

Job: Default Job failed

Stages & jobs

  1. Default Stage

3 get dataset: Test case result

The below summarizes the result of the test "3 get dataset" in build 663 of FLARECAST - propertyservice - Default Job. View test case history
Description
3 get dataset
Test class
dataset_tests.DatasetTests
Method
test_3_get_dataset
Duration
< 1 sec
Status
Failed (New Failure)

Error Log

Exception: <Response [500]>
self = <tests.dataset_tests.DatasetTests testMethod=test_3_get_dataset>

    def test_3_get_dataset(self):
>       result = get_request(self.service_url + self.__GET_DATASETS)

dataset_tests.py:31: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

url = 'http://localhost:8002/dataset/list', params = {}

    def get_request(url, params={}):
        r = requests.get(url, params=params)
    
        if r.status_code != 200:
>           raise Exception(r)
E           Exception: <Response [500]>

util.py:29: Exception