Skip to content

Commit

Permalink
test: support runInTreeVolumeTestsOnly env var in e2e tets
Browse files Browse the repository at this point in the history
  • Loading branch information
andyzhangx committed Dec 16, 2024
1 parent a944921 commit 8cdc498
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/e2e/suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const (

var (
azurefileDriver *azurefile.Driver
isUsingInTreeVolumePlugin = os.Getenv(driver.AzureDriverNameVar) == inTreeStorageClass
isUsingInTreeVolumePlugin = (os.Getenv(driver.AzureDriverNameVar) == inTreeStorageClass || os.Getenv("runInTreeVolumeTestsOnly") != "")
isTestingMigration = os.Getenv(testMigrationEnvVar) != ""
isWindowsCluster = os.Getenv(testWindowsEnvVar) != ""
isCapzTest = os.Getenv("NODE_MACHINE_TYPE") != ""
Expand Down

0 comments on commit 8cdc498

Please sign in to comment.