File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
reproman/distributions/tests Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -186,10 +186,11 @@ def test_tracer(docker_container):
186186 assert "foo" in remaining_files
187187 assert dist .name == "redhat"
188188 assert dist .version .startswith ("CentOS Linux release 7" )
189- source_ids = [s .id for s in dist .sources ]
190- assert "base/7/x86_64" in source_ids
191- assert "extras/7/x86_64" in source_ids
192- assert "updates/7/x86_64" in source_ids
189+ # XFAIL disabled for centos7 -- see the other xfail in this file
190+ # source_ids = [s.id for s in dist.sources]
191+ # assert "base/7/x86_64" in source_ids
192+ # assert "extras/7/x86_64" in source_ids
193+ # assert "updates/7/x86_64" in source_ids
193194 assert dist .packages [0 ].name == "coreutils"
194195 assert dist .packages [0 ].group == "System Environment/Base"
195196 assert dist .packages [0 ].files [0 ] == "/usr/bin/ls"
@@ -200,6 +201,7 @@ def test_tracer(docker_container):
200201 assert packages ["/usr/bin/ls" ]["packager" ].startswith ("CentOS BuildSystem" )
201202
202203
204+ @pytest .mark .xfail (reason = "centos:7 needs now gone mirrorlist.centos.org" )
203205def test_distribution (docker_container , centos_spec ):
204206 from ...resource .docker_container import DockerContainer
205207
You can’t perform that action at this time.
0 commit comments