Skip to content

Commit 1861791

Browse files
committed
unskipping ES tests
1 parent bb0d240 commit 1861791

3 files changed

Lines changed: 0 additions & 7 deletions

File tree

core/integration_tests/tests_concepts.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1729,7 +1729,6 @@ def setUp(self):
17291729
self.token = self.user.get_token()
17301730
self.random_user = UserProfileFactory()
17311731

1732-
@unittest.skipIf(settings.ENV == 'ci', "Skipping due to ES tests failing on CI")
17331732
def test_search(self): # pylint: disable=too-many-statements
17341733
if settings.ENV == 'ci':
17351734
rebuild_indexes(['concepts'])
@@ -1834,7 +1833,6 @@ def test_search(self): # pylint: disable=too-many-statements
18341833
self.assertEqual(response.status_code, 200)
18351834
self.assertEqual(len(response.data), 2)
18361835

1837-
@unittest.skipIf(settings.ENV == 'ci', "Skipping due to ES tests failing on CI")
18381836
def test_search_with_latest_released_repo_search(self): # pylint: disable=too-many-statements
18391837
if settings.ENV == 'ci':
18401838
rebuild_indexes(['concepts'])
@@ -1963,7 +1961,6 @@ def test_search_with_latest_released_repo_search(self): # pylint: disable=too-m
19631961
self.assertEqual(response.status_code, 200)
19641962
self.assertEqual(len(response.data), 1)
19651963

1966-
@unittest.skipIf(settings.ENV == 'ci', "Skipping due to ES tests failing on CI")
19671964
def test_facets(self):
19681965
if settings.ENV == 'ci':
19691966
rebuild_indexes(['concepts'])
@@ -1985,7 +1982,6 @@ def test_facets(self):
19851982
self.assertTrue(class_b_facet[1] >= 1)
19861983
self.assertFalse(class_b_facet[2])
19871984

1988-
@unittest.skipIf(settings.ENV == 'ci', "Skipping due to ES tests failing on CI")
19891985
def test_facets_with_latest_released_repo_search(self):
19901986
if settings.ENV == 'ci':
19911987
rebuild_indexes(['concepts'])

core/integration_tests/tests_orgs.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -613,7 +613,6 @@ def test_get(self):
613613
['corporate', 'city']
614614
)
615615

616-
@unittest.skipIf(settings.ENV == 'ci', "Skipping due to ES tests failing on CI")
617616
def test_get_with_search(self):
618617
user = UserProfileFactory(username='batman')
619618
token = user.get_token()
@@ -678,7 +677,6 @@ def test_get(self):
678677
['corporate', 'city']
679678
)
680679

681-
@unittest.skipIf(settings.ENV == 'ci', "Skipping due to ES tests failing on CI")
682680
def test_get_with_search(self):
683681
user = UserProfileFactory(username='batman')
684682
token = user.get_token()

core/integration_tests/tests_sources.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1382,7 +1382,6 @@ def test_get_200(self):
13821382
self.assertEqual(response.data['active_concepts'], 2)
13831383
self.assertEqual(response.data['active_mappings'], 1)
13841384

1385-
@unittest.skipIf(settings.ENV == 'ci', "Skipping due to ES tests failing on CI")
13861385
def test_get_200_verbose(self): # pylint: disable=too-many-statements
13871386
self.source.active_concepts = 2
13881387
self.source.active_mappings = 1

0 commit comments

Comments
 (0)