Skip to content

Commit 9ecaf8b

Browse files
authored
Temporarily disable flask (experimental debugger) test on AppVeyor (#1566)
* temprarily disable flask test on appveyor * Fix linter
1 parent 0c64b74 commit 9ecaf8b

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/test/debugger/web.framework.test.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import { EXTENSION_ROOT_DIR } from '../../client/common/constants';
1313
import { noop } from '../../client/common/core.utils';
1414
import { DebugOptions, LaunchRequestArguments } from '../../client/debugger/Common/Contracts';
1515
import { PYTHON_PATH, sleep } from '../common';
16-
import { IS_MULTI_ROOT_TEST, TEST_DEBUGGER } from '../initialize';
16+
import { IS_APPVEYOR, IS_MULTI_ROOT_TEST, TEST_DEBUGGER } from '../initialize';
1717
import { DEBUGGER_TIMEOUT } from './common/constants';
1818
import { continueDebugging, createDebugAdapter, ExpectedVariable, hitHttpBreakpoint, makeHttpRequest, validateVariablesInFrame } from './utils';
1919

@@ -129,7 +129,10 @@ suite(`Django and Flask Debugging: ${debuggerType}`, () => {
129129
expect(htmlResult).to.contain('Hello this_is_another_value_from_server');
130130
}
131131

132-
test('Test Flask Route and Template debugging', async () => {
132+
test('Test Flask Route and Template debugging', async function () {
133+
if (IS_APPVEYOR) {
134+
return this.skip();
135+
}
133136
const workspaceDirectory = path.join(EXTENSION_ROOT_DIR, 'src', 'testMultiRootWkspc', 'workspace5', 'flaskApp');
134137
const { options, port } = await buildFlaskLaunchArgs(workspaceDirectory);
135138

0 commit comments

Comments
 (0)