Skip to content

Commit af2bf2d

Browse files
authored
Merge pull request kubernetes#127364 from aojea/e2e_tag_networks
Fix e2e tests tags
2 parents e86f5c0 + 8cb7c54 commit af2bf2d

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

test/conformance/testdata/conformance.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2656,21 +2656,21 @@
26562656
file: test/e2e/common/node/expansion.go
26572657
- testname: VolumeSubpathEnvExpansion, subpath with absolute path
26582658
codename: '[sig-node] Variable Expansion should fail substituting values in a volume
2659-
subpath with absolute path [Slow] [Conformance]'
2659+
subpath with absolute path [Conformance]'
26602660
description: Make sure a container's subpath can not be set using an expansion of
26612661
environment variables when absolute path is supplied.
26622662
release: v1.19
26632663
file: test/e2e/common/node/expansion.go
26642664
- testname: VolumeSubpathEnvExpansion, subpath with backticks
26652665
codename: '[sig-node] Variable Expansion should fail substituting values in a volume
2666-
subpath with backticks [Slow] [Conformance]'
2666+
subpath with backticks [Conformance]'
26672667
description: Make sure a container's subpath can not be set using an expansion of
26682668
environment variables when backticks are supplied.
26692669
release: v1.19
26702670
file: test/e2e/common/node/expansion.go
26712671
- testname: VolumeSubpathEnvExpansion, subpath test writes
26722672
codename: '[sig-node] Variable Expansion should succeed in writing subpaths in container
2673-
[Slow] [Conformance]'
2673+
[Conformance]'
26742674
description: "Verify that a subpath expansion can be used to write files into subpaths.
26752675
1.\tvalid subpathexpr starts a container running 2.\ttest for valid subpath writes
26762676
3.\tsuccessful expansion of the subpathexpr isn't required for volume cleanup"

test/e2e/common/node/expansion.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ var _ = SIGDescribe("Variable Expansion", func() {
153153
Testname: VolumeSubpathEnvExpansion, subpath with backticks
154154
Description: Make sure a container's subpath can not be set using an expansion of environment variables when backticks are supplied.
155155
*/
156-
framework.ConformanceIt("should fail substituting values in a volume subpath with backticks", f.WithSlow(), func(ctx context.Context) {
156+
framework.ConformanceIt("should fail substituting values in a volume subpath with backticks", func(ctx context.Context) {
157157

158158
envVars := []v1.EnvVar{
159159
{
@@ -187,7 +187,7 @@ var _ = SIGDescribe("Variable Expansion", func() {
187187
Testname: VolumeSubpathEnvExpansion, subpath with absolute path
188188
Description: Make sure a container's subpath can not be set using an expansion of environment variables when absolute path is supplied.
189189
*/
190-
framework.ConformanceIt("should fail substituting values in a volume subpath with absolute path", f.WithSlow(), func(ctx context.Context) {
190+
framework.ConformanceIt("should fail substituting values in a volume subpath with absolute path", func(ctx context.Context) {
191191
absolutePath := "/tmp"
192192
if framework.NodeOSDistroIs("windows") {
193193
// Windows does not typically have a C:\tmp folder.
@@ -298,7 +298,7 @@ var _ = SIGDescribe("Variable Expansion", func() {
298298
3. successful expansion of the subpathexpr isn't required for volume cleanup
299299
300300
*/
301-
framework.ConformanceIt("should succeed in writing subpaths in container", f.WithSlow(), func(ctx context.Context) {
301+
framework.ConformanceIt("should succeed in writing subpaths in container", func(ctx context.Context) {
302302

303303
envVars := []v1.EnvVar{
304304
{

0 commit comments

Comments
 (0)