Build: #354 failed

Job: Default Job failed

Stages & jobs

  1. Default Stage

Test results

  • 15 tests in total
  • 5 tests failed
  • 8 tests were fixed
  • 2 tests were quarantined / skipped
  • < 1 second taken in total.

Build 354 has the following 5 errors:There were no new test failures since the previous build.

Existing test failures 5
Status Test Failing since Duration
IndexError: list index out of range
self = <tests.link_tests.LinkTests testMethod=test_add_link>

    def test_add_link(self):
        result = self.client.add_link(self.flarecast_ids[0],
>                                     self.flarecast_ids[1],
                                      'test link',
                                      'test description')
(3 more lines...)
AssertionError: 2 != 1
self = <tests.property_group_tests.PropertyGroupTests testMethod=test_add_multiple_property_groups>

    def test_add_multiple_property_groups(self):
        result = self.client.insert_regions(
            TEST_DATASET,
            [TEST_PGT_OBJECT, TEST_PGT_OBJECT_WITH_DATA]
        )
(4 more lines...)
RestException: {   "status": 500,    "type": "about:blank",    "detail": "The server encountered an internal error and was unable to complete your request.  Either the server is overloaded or there is an error in the application.",    "title": "Internal Server Error" }
self = <tests.property_group_tests.PropertyGroupTests testMethod=test_add_one_property_group>

    def test_add_one_property_group(self):
        result = self.client.add_region(
            TEST_DATASET,
>           time_start=TEST_PGT_TIME_START
        )
(25 more lines...)
AssertionError: 3 != 1
self = <tests.query_tests.QueryTests testMethod=test_get_all_property_groups>

    def test_get_all_property_groups(self):
        groups = self.client.get_properties(TEST_DATASET)
>       self.assertEqual(3, len(groups))
E       AssertionError: 3 != 1

(1 more lines...)
AssertionError: 2 != 1
self = <tests.query_tests.QueryTests testMethod=test_get_all_property_groups_with_eq>

    def test_get_all_property_groups_with_eq(self):
        groups = self.client.get_properties(TEST_DATASET,
                                            'test1=eq(500)')
>       self.assertEqual(2, len(groups))
E       AssertionError: 2 != 1
(2 more lines...)