mirror of
https://github.com/k3s-io/kubernetes.git
synced 2026-01-05 15:37:24 +00:00
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:
@@ -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{
|
||||
|
||||
Reference in New Issue
Block a user