diff --git a/galaxy_ng/tests/unit/app/utils/test_galaxy.py b/galaxy_ng/tests/unit/app/utils/test_galaxy.py index f3d1f9b783..c121f13aed 100644 --- a/galaxy_ng/tests/unit/app/utils/test_galaxy.py +++ b/galaxy_ng/tests/unit/app/utils/test_galaxy.py @@ -1,6 +1,7 @@ #!/usr/bin/env python3 import uuid +from unittest import skip from django.test import TestCase from galaxy_ng.app.utils.galaxy import upstream_role_iterator @@ -10,12 +11,14 @@ class TestGalaxyUtils(TestCase): + @skip("FIXME") def test_upstream_role_iterator_with_user(self): roles = [] for namespace, role, versions in upstream_role_iterator(github_user="jctanner"): roles.append(role) assert sorted(set([x['github_user'] for x in roles])) == ['jctanner'] + @skip("FIXME") def test_upstream_role_iterator_with_user_and_name(self): roles = [] iterator_kwargs = { @@ -28,6 +31,7 @@ def test_upstream_role_iterator_with_user_and_name(self): assert roles[0]['github_user'] == 'geerlingguy' assert roles[0]['name'] == 'docker' + @skip("FIXME") def test_upstream_role_iterator_with_limit(self): limit = 10 count = 0