Skip to content

Commit fe58f7f

Browse files
authored
Update long running tests check logic (#4202)
1 parent 273c7c4 commit fe58f7f

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.vscode/launch.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,9 @@
7474
"MOCHA_timeout": "0", // Disable time-outs
7575
"DEBUGTELEMETRY": "v",
7676
"NODE_DEBUG": "",
77-
"ENABLE_LONG_RUNNING_TESTS": "",
7877
"FUNC_PATH": "func",
79-
"AZFUNC_UPDATE_BACKUP_TEMPLATES": ""
78+
"AZFUNC_UPDATE_BACKUP_TEMPLATES": "",
79+
"AzCode_EnableLongRunningTestsLocal": "",
8080
}
8181
},
8282
{

test/global.test.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@ import { CentralTemplateProvider, deploySubpathSetting, envUtils, ext, FuncVersi
1616
*/
1717
export const testFolderPath: string = path.join(os.tmpdir(), `azFuncTest${getRandomHexString()}`);
1818

19-
export const longRunningTestsEnabled: boolean = envUtils.isEnvironmentVariableSet(process.env.AzCode_UseAzureFederatedCredentials);
19+
const longRunningLocalTestsEnabled: boolean = envUtils.isEnvironmentVariableSet(process.env.AzCode_EnableLongRunningTestsLocal);
20+
const longRunningRemoteTestsEnabled: boolean = envUtils.isEnvironmentVariableSet(process.env.AzCode_UseAzureFederatedCredentials);
21+
22+
export const longRunningTestsEnabled: boolean = longRunningLocalTestsEnabled || longRunningRemoteTestsEnabled;
2023
export const updateBackupTemplates: boolean = envUtils.isEnvironmentVariableSet(process.env.AZFUNC_UPDATE_BACKUP_TEMPLATES);
2124
export const skipStagingTemplateSource: boolean = envUtils.isEnvironmentVariableSet(process.env.SKIP_STAGING_TEMPLATE_SOURCE);
2225

0 commit comments

Comments
 (0)