diff options
author | baude <bbaude@redhat.com> | 2019-05-08 15:21:33 -0500 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2019-05-13 12:17:55 -0500 |
commit | a86aa4b1e92a7d53c932dd0b06c9f51bfce47e18 (patch) | |
tree | 2cf8fd1726f1053691d5dcd646f0028fa43b41fd /test/e2e | |
parent | d2571c7fd49d22e822a6f3b3796488218c9f9e46 (diff) | |
download | podman-a86aa4b1e92a7d53c932dd0b06c9f51bfce47e18.tar.gz podman-a86aa4b1e92a7d53c932dd0b06c9f51bfce47e18.tar.bz2 podman-a86aa4b1e92a7d53c932dd0b06c9f51bfce47e18.zip |
split remote tests from distro tests
We want the remote tests for our distributions to be tested in a
different VM than the local tests. This allows for faster CI runs and
easier debug as well as seperation of flakes.
Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'test/e2e')
-rw-r--r-- | test/e2e/info_test.go | 1 | ||||
-rw-r--r-- | test/e2e/libpod_suite_remoteclient_test.go | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/info_test.go b/test/e2e/info_test.go index ca4012dde..c960fb311 100644 --- a/test/e2e/info_test.go +++ b/test/e2e/info_test.go @@ -24,7 +24,6 @@ var _ = Describe("Podman Info", func() { } podmanTest = PodmanTestCreate(tempdir) podmanTest.Setup() - podmanTest.DelayForVarlink() }) AfterEach(func() { diff --git a/test/e2e/libpod_suite_remoteclient_test.go b/test/e2e/libpod_suite_remoteclient_test.go index 05c355711..b7fd8537d 100644 --- a/test/e2e/libpod_suite_remoteclient_test.go +++ b/test/e2e/libpod_suite_remoteclient_test.go @@ -77,6 +77,7 @@ func (p *PodmanTestIntegration) StartVarlink() { command.SysProcAttr = &syscall.SysProcAttr{Setpgid: true} p.VarlinkCommand = command p.VarlinkSession = command.Process + p.DelayForVarlink() } func (p *PodmanTestIntegration) StopVarlink() { |