Build: #669 failed

Job: Default Job failed

Stages & jobs

  1. Default Stage

1 add datasets: Test case result

The below summarizes the result of the test "1 add datasets" in build 669 of FLARECAST - propertyservice - Default Job. View test case history
Description
1 add datasets
Test class
dataset_tests.DatasetTests
Method
test_1_add_datasets
Duration
< 1 sec
Status
Failed (Existing Failure)

Error Log

test setup failure
self = <class 'dataset_tests.DatasetTests'>

    @classmethod
    def setUpClass(self):
        super(DatasetTests, self).setUpClass()
>       resp = get_request(self.service_url + self.__GET_DATASETS)

dataset_tests.py:16: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
util.py:30: in get_request
    r = requests.get(url, params=params)
/home/bamboo/.local/lib/python2.7/site-packages/requests/api.py:72: in get
    return request('get', url, params=params, **kwargs)
/home/bamboo/.local/lib/python2.7/site-packages/requests/api.py:58: in request
    return session.request(method=method, url=url, **kwargs)
/home/bamboo/.local/lib/python2.7/site-packages/requests/sessions.py:488: in request
    prep = self.prepare_request(req)
/home/bamboo/.local/lib/python2.7/site-packages/requests/sessions.py:431: in prepare_request
    hooks=merge_hooks(request.hooks, self.hooks),
/home/bamboo/.local/lib/python2.7/site-packages/requests/models.py:305: in prepare
    self.prepare_url(url, params)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <PreparedRequest [GET]>
url = 'http://--junitxml:../results_dataset_tests.xml/dataset/list'
params = OrderedDict()

    def prepare_url(self, url, params):
        """Prepares the given HTTP URL."""
        #: Accept objects that have string representations.
        #: We're unable to blindly call unicode/str functions
        #: as this will include the bytestring indicator (b'')
        #: on python 3.x.
        #: https://github.com/requests/requests/pull/2238
        if isinstance(url, bytes):
            url = url.decode('utf8')
        else:
            url = unicode(url) if is_py2 else str(url)
    
        # Remove leading whitespaces from url
        url = url.lstrip()
    
        # Don't do any URL preparation for non-HTTP schemes like `mailto`,
        # `data` etc to work around exceptions from `url_parse`, which
        # handles RFC 3986 only.
        if ':' in url and not url.lower().startswith('http'):
            self.url = url
            return
    
        # Support for unicode domain names and paths.
        try:
            scheme, auth, host, port, path, query, fragment = parse_url(url)
        except LocationParseError as e:
>           raise InvalidURL(*e.args)
E           InvalidURL: Failed to parse: --junitxml:..

/home/bamboo/.local/lib/python2.7/site-packages/requests/models.py:373: InvalidURL