Build: #591 failed
Job: Default Job failed
3 get dataset: Test case result
The below summarizes the result of the test "3 get dataset" in build 591 of FLARECAST - propertyservice - Default Job.
- Description
- 3 get dataset
- Test class
- dataset_tests.DatasetTests
- Method
- test_3_get_dataset
- Duration
- 3 secs
- Status
- Failed (Existing 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