Skip to content

Commit

Permalink
Skip broken tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sgugger committed Aug 24, 2023
1 parent 4d40109 commit 68fa9a5
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/utils/test_hub_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,11 +128,13 @@ def test_get_file_from_repo_local(self):

self.assertIsNone(get_file_from_repo(tmp_dir, "b.txt"))

@unittest.skip("Test is broken, fix me Wauplain!")
def test_get_file_gated_repo(self):
"""Test download file from a gated repo fails with correct message when not authenticated."""
with self.assertRaisesRegex(EnvironmentError, "You are trying to access a gated repo."):
cached_file(GATED_REPO, README_FILE, use_auth_token=False)

@unittest.skip("Test is broken, fix me Wauplain!")
def test_has_file_gated_repo(self):
"""Test check file existence from a gated repo fails with correct message when not authenticated."""
with self.assertRaisesRegex(EnvironmentError, "is a gated repository"):
Expand Down

0 comments on commit 68fa9a5

Please sign in to comment.