@@ -260,10 +260,20 @@ var (
260
260
`\[Skipped\]` ,
261
261
`\[Slow\]` ,
262
262
`\[Flaky\]` ,
263
+ `\[Disruptive\]` ,
263
264
264
265
// not enabled in Origin yet
265
266
//`\[Feature:GarbageCollector\]`,
266
267
268
+ // Doesn't work on scaled up clusters
269
+ `\[Feature:ImagePrune\]` ,
270
+ // Quota isn't turned on by default, we should do that and then reenable these tests
271
+ `\[Feature:ImageQuota\]` ,
272
+ // Currently disabled by default
273
+ `\[Feature:Initializers\]` ,
274
+ // Needs special configuration
275
+ `\[Feature:Audit\]` ,
276
+
267
277
// Depends on external components, may not need yet
268
278
`Monitoring` , // Not installed, should be
269
279
`Cluster level logging` , // Not installed yet
@@ -354,36 +364,7 @@ var (
354
364
// The list of tests to run for the OpenShift conformance suite. Any test
355
365
// in this group which cannot be run in parallel must be identified with the
356
366
// [Serial] tag or added to the serialTests filter.
357
- conformanceTests = []string {
358
- `\[Conformance\]` ,
359
- `Services.*NodePort` ,
360
- `ResourceQuota should` ,
361
- `EmptyDir` ,
362
- `StatefulSet` ,
363
- `Downward API` ,
364
- `DNS for ExternalName services` ,
365
- `DNS for pods for Hostname and Subdomain annotation` ,
366
- `PrivilegedPod should test privileged pod` ,
367
- `Pods should support remote command execution` ,
368
- `Pods should support retrieving logs from the container` ,
369
- `Kubectl client Simple pod should support` ,
370
- `Job should run a job to completion when tasks succeed` ,
371
- `Variable Expansion` ,
372
- `init containers` ,
373
- `Clean up pods on node kubelet` , // often catches issues
374
- `\[Feature\:SecurityContext\]` ,
375
- `should create a LimitRange with defaults` ,
376
- `Generated release_1_2 clientset` ,
377
- `should create a pod that reads a secret` ,
378
- `should create a pod that prints his name and namespace` ,
379
- `ImageLookup` ,
380
- `DNS for pods for Hostname and Subdomain Annotation` ,
381
- `Garbage collector` ,
382
- `Kubectl apply should apply a new configuration to an existing RC` ,
383
- `Simple pod should handle in-cluster config` ,
384
- `Simple pod should support exec` ,
385
- `Namespaces .* should delete fast enough` ,
386
- }
367
+ conformanceTests = []string {}
387
368
conformanceTestsFilter = regexp .MustCompile (strings .Join (conformanceTests , `|` ))
388
369
389
370
// Identifies any tests that by nature must be run in isolation. Every test in this
0 commit comments