File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change 1
1
from __future__ import annotations
2
2
3
3
from jira .resources import Field
4
- from tests .conftest import JiraTestCase
4
+ from tests .conftest import JiraTestCase , allow_on_cloud
5
5
6
6
7
7
class FieldsTest (JiraTestCase ):
@@ -10,12 +10,14 @@ def setUp(self) -> None:
10
10
self .issue_1 = self .test_manager .project_b_issue1
11
11
self .issue_1_obj = self .test_manager .project_b_issue1_obj
12
12
13
+ @allow_on_cloud
13
14
def test_field (self ):
14
15
issue_fields = self .test_manager .jira_admin .project_issue_fields (
15
16
project = self .project_a , issue_type = self .issue_1_obj .fields .issuetype .id
16
17
)
17
18
assert isinstance (issue_fields [0 ], Field )
18
19
20
+ @allow_on_cloud
19
21
def test_field_pagination (self ):
20
22
issue_fields = self .test_manager .jira_admin .project_issue_fields (
21
23
project = self .project_a ,
You can’t perform that action at this time.
0 commit comments