@@ -13,7 +13,7 @@ import { EXTENSION_ROOT_DIR } from '../../client/common/constants';
1313import  {  noop  }  from  '../../client/common/core.utils' ; 
1414import  {  DebugOptions ,  LaunchRequestArguments  }  from  '../../client/debugger/Common/Contracts' ; 
1515import  {  PYTHON_PATH ,  sleep  }  from  '../common' ; 
16- import  {  IS_APPVEYOR ,   IS_MULTI_ROOT_TEST ,  TEST_DEBUGGER  }  from  '../initialize' ; 
16+ import  {  IS_MULTI_ROOT_TEST ,  TEST_DEBUGGER  }  from  '../initialize' ; 
1717import  {  DEBUGGER_TIMEOUT  }  from  './common/constants' ; 
1818import  {  continueDebugging ,  createDebugAdapter ,  ExpectedVariable ,  hitHttpBreakpoint ,  makeHttpRequest ,  validateVariablesInFrame  }  from  './utils' ; 
1919
@@ -62,7 +62,7 @@ suite(`Django and Flask Debugging: ${debuggerType}`, () => {
6262 const  port  =  await  getFreePort ( {  host : 'localhost'  } ) ; 
6363 const  options  =  buildLaunchArgs ( workspaceDirectory ) ; 
6464
65-  options . env ! [ 'FLASK_APP' ]  =  path . join ( workspaceDirectory ,   'run.py' ) ; 
65+  options . env ! [ 'FLASK_APP' ]  =  'run.py' ; 
6666 options . module  =  'flask' ; 
6767 options . debugOptions  =  [ DebugOptions . RedirectOutput ,  DebugOptions . Jinja ] ; 
6868 options . args  =  [ 
@@ -129,10 +129,7 @@ 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  function  ( )  { 
133-  if  ( IS_APPVEYOR )  { 
134-  return  this . skip ( ) ; 
135-  } 
132+  test ( 'Test Flask Route and Template debugging' ,  async  ( )  =>  { 
136133 const  workspaceDirectory  =  path . join ( EXTENSION_ROOT_DIR ,  'src' ,  'testMultiRootWkspc' ,  'workspace5' ,  'flaskApp' ) ; 
137134 const  {  options,  port }  =  await  buildFlaskLaunchArgs ( workspaceDirectory ) ; 
138135
0 commit comments