mirror of
https://github.com/containers/podman.git
synced 2025-10-16 10:43:52 +08:00
Semiperiodic cleanup of obsolete Skip()s
Found by my find-obsolete-skips script. Let's see which, if any, of these skipped tests can be reenabled. Some Skips are "this will never work", not "this is expected to work one day". Update the message on those to reflect that. Some were real bugs in the test framework. Fix those. And, joy of joys, some work today. Remove those skips. Signed-off-by: Ed Santiago <santiago@redhat.com>
This commit is contained in:
@ -18,7 +18,6 @@ var _ = Describe("Podman import", func() {
|
||||
)
|
||||
|
||||
BeforeEach(func() {
|
||||
SkipIfRemote("FIXME: These look like it is supposed to work in remote")
|
||||
tempdir, err = CreateTempDirInTempDir()
|
||||
if err != nil {
|
||||
os.Exit(1)
|
||||
@ -156,6 +155,8 @@ var _ = Describe("Podman import", func() {
|
||||
})
|
||||
|
||||
It("podman import with signature", func() {
|
||||
SkipIfRemote("FIXME: remote ignores --signature-policy, #12357")
|
||||
|
||||
outfile := filepath.Join(podmanTest.TempDir, "container.tar")
|
||||
_, ec, cid := podmanTest.RunLsContainer("")
|
||||
Expect(ec).To(Equal(0))
|
||||
|
Reference in New Issue
Block a user