@@ -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' ])
0 commit comments