Build: #591 failed

Job: Default Job failed

Stages & jobs

  1. Default Stage

2 get link list: Test case result

The below summarizes the result of the test "2 get link list" in build 591 of FLARECAST - propertyservice - Default Job. View test case history
Description
2 get link list
Test class
link_tests.LinkTests
Method
test_2_get_link_list
Duration
< 1 sec
Status
Failed (Existing Failure)

Error Log

test setup failure
self = <class 'tests.link_tests.LinkTests'>

    @classmethod
    def setUpClass(self):
        super(LinkTests, self).setUpClass()
>       post_request(self.service_url + self.__ADD_DATASETS, TEST_DATASETS)

link_tests.py:24: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

url = 'http://localhost:8002/dataset/bulk'
payload = [{'description': '...', 'name': 'test_ds1', 'responsible': 'John Doe'}, {'description': '...', 'name': 'test_ds2', 'responsible': 'John Doe'}]

    def post_request(url, payload):
        headers = {'Content-Type': 'application/json'}
        r = requests.post(url, json=payload, headers=headers)
    
        if r.status_code != 200:
>           raise Exception(r)
E           Exception: <Response [500]>

util.py:11: Exception