Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ export async function buildDjangoLaunchDebugConfiguration(
program: program || defaultProgram,
args: ['runserver'],
django: true,
autoStartBrowser: false,
};
if (!program) {
const selectedProgram = await input.showInputBox({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ export async function buildFlaskLaunchDebugConfiguration(
},
args: ['run', '--no-debugger', '--no-reload'],
jinja: true,
autoStartBrowser: false,
};

if (!application) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ suite('Debugging - Configuration Provider Django', () => {
program: 'hello',
args: ['runserver'],
django: true,
autoStartBrowser: false,
};

expect(state.config).to.be.deep.equal(config);
Expand All @@ -129,6 +130,7 @@ suite('Debugging - Configuration Provider Django', () => {
program: defaultProgram,
args: ['runserver'],
django: true,
autoStartBrowser: false,
};

expect(state.config).to.be.deep.equal(config);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ suite('Debugging - Configuration Provider Flask', () => {
},
args: ['run', '--no-debugger', '--no-reload'],
jinja: true,
autoStartBrowser: false,
};

expect(state.config).to.be.deep.equal(config);
Expand All @@ -82,6 +83,7 @@ suite('Debugging - Configuration Provider Flask', () => {
},
args: ['run', '--no-debugger', '--no-reload'],
jinja: true,
autoStartBrowser: false,
};

expect(state.config).to.be.deep.equal(config);
Expand Down