Build: #354 failed
Job: Default Job failed
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.
| Status | Test | Failing since | Duration | |
|---|---|---|---|---|
|
LinkTests
test_add_link
|
Failing since build #351 (Code changes detected) | < 1 sec | ||
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...)
|
||||
|
PropertyGroupTests
test_add_multiple_property_groups
|
Failing since build #351 (Code changes detected) | < 1 sec | ||
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...)
|
||||
|
PropertyGroupTests
test_add_one_property_group
|
Failing since build #351 (Code changes detected) | < 1 sec | ||
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...)
|
||||
|
QueryTests
test_get_all_property_groups
|
Failing since build #351 (Code changes detected) | < 1 sec | ||
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...)
|
||||
|
QueryTests
test_get_all_property_groups_with_eq
|
Failing since build #351 (Code changes detected) | < 1 sec | ||
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...)
|
||||