Tag conformance tests with a [Conformance] string in the description

- remove skip list from conformance-test.sh and filter by the new tag
- remove experimental api tests from conformance test suite
- remove all tests from conformance test suite which are either
  restricted to e.g. gce, gke, aws or require SSH
This commit is contained in:
Dr. Stefan Schimanski
2015-10-07 16:09:24 +02:00
parent ed382ec0a0
commit cb00df9b28
24 changed files with 86 additions and 110 deletions

View File

@@ -51,7 +51,7 @@ var _ = Describe("Networking", func() {
}
})
It("should provide Internet connection for containers", func() {
It("should provide Internet connection for containers [Conformance]", func() {
By("Running container which tries to wget google.com")
podName := "wget-test"
contName := "wget-test-container"
@@ -82,7 +82,7 @@ var _ = Describe("Networking", func() {
})
// First test because it has no dependencies on variables created later on.
It("should provide unchanging, static URL paths for kubernetes api services.", func() {
It("should provide unchanging, static URL paths for kubernetes api services [Conformance]", func() {
tests := []struct {
path string
}{
@@ -103,7 +103,7 @@ var _ = Describe("Networking", func() {
})
//Now we can proceed with the test.
It("should function for intra-pod communication", func() {
It("should function for intra-pod communication [Conformance]", func() {
By(fmt.Sprintf("Creating a service named %q in namespace %q", svcname, f.Namespace.Name))
svc, err := f.Client.Services(f.Namespace.Name).Create(&api.Service{