6
6
7
7
8
8
# https://github.com/python-gitlab/python-gitlab/pull/2790#pullrequestreview-1873617123
9
- @pytest .mark .xfail (reason = "Import/Export to be worked on in a follow up" )
9
+ @pytest .mark .xfail (reason = "test_group_import_export to be worked on in a follow up" )
10
10
def test_group_import_export (gl , group , temp_dir ):
11
11
export = group .exports .create ()
12
12
assert export .message == "202 Accepted"
@@ -34,7 +34,7 @@ def test_group_import_export(gl, group, temp_dir):
34
34
35
35
36
36
# https://github.com/python-gitlab/python-gitlab/pull/2790#pullrequestreview-1873617123
37
- @pytest .mark .xfail (reason = "Import/Export to be worked on in a follow up" )
37
+ @pytest .mark .xfail (reason = "test_project_import_export to be worked on in a follow up" )
38
38
def test_project_import_export (gl , project , temp_dir ):
39
39
export = project .exports .create ()
40
40
assert export .message == "202 Accepted"
@@ -73,7 +73,7 @@ def test_project_import_export(gl, project, temp_dir):
73
73
74
74
75
75
# https://github.com/python-gitlab/python-gitlab/pull/2790#pullrequestreview-1873617123
76
- @pytest .mark .xfail (reason = "Import/Export to be worked on in a follow up" )
76
+ @pytest .mark .xfail (reason = "test_project_remote_import to be worked on in a follow up" )
77
77
def test_project_remote_import (gl ):
78
78
with pytest .raises (gitlab .exceptions .GitlabImportError ) as err_info :
79
79
gl .projects .remote_import (
@@ -87,7 +87,9 @@ def test_project_remote_import(gl):
87
87
88
88
89
89
# https://github.com/python-gitlab/python-gitlab/pull/2790#pullrequestreview-1873617123
90
- @pytest .mark .xfail (reason = "Import/Export to be worked on in a follow up" )
90
+ @pytest .mark .xfail (
91
+ reason = "test_project_remote_import_s3 to be worked on in a follow up"
92
+ )
91
93
def test_project_remote_import_s3 (gl ):
92
94
gl .features .set ("import_project_from_remote_file_s3" , True )
93
95
with pytest .raises (gitlab .exceptions .GitlabImportError ) as err_info :
0 commit comments