File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
galaxy_ng/tests/unit/app/utils Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python3
2
2
3
3
import uuid
4
+ from unittest import skip
4
5
5
6
from django .test import TestCase
6
7
from galaxy_ng .app .utils .galaxy import upstream_role_iterator
10
11
11
12
class TestGalaxyUtils (TestCase ):
12
13
14
+ @skip ("FIXME" )
13
15
def test_upstream_role_iterator_with_user (self ):
14
16
roles = []
15
17
for namespace , role , versions in upstream_role_iterator (github_user = "jctanner" ):
16
18
roles .append (role )
17
19
assert sorted (set ([x ['github_user' ] for x in roles ])) == ['jctanner' ]
18
20
21
+ @skip ("FIXME" )
19
22
def test_upstream_role_iterator_with_user_and_name (self ):
20
23
roles = []
21
24
iterator_kwargs = {
@@ -28,6 +31,7 @@ def test_upstream_role_iterator_with_user_and_name(self):
28
31
assert roles [0 ]['github_user' ] == 'geerlingguy'
29
32
assert roles [0 ]['name' ] == 'docker'
30
33
34
+ @skip ("FIXME" )
31
35
def test_upstream_role_iterator_with_limit (self ):
32
36
limit = 10
33
37
count = 0
You can’t perform that action at this time.
0 commit comments