Skip to content

Commit 158683d

Browse files
committed
rename, fix error on other test
1 parent 75bd75d commit 158683d

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

src/test/linters/lint.functional.test.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
'use strict';
55

66
import * as assert from 'assert';
7-
import * as childProcess from 'child_process';
87
import * as fs from 'fs-extra';
98
import * as os from 'os';
109
import * as path from 'path';
@@ -781,9 +780,9 @@ suite('Linting Functional Tests', () => {
781780
sinon.restore();
782781
});
783782

784-
const pythonPath = childProcess.execSync(`"${PYTHON_PATH}" -c "import sys;print(sys.executable)"`);
783+
// const pythonPath = childProcess.execSync(`"${PYTHON_PATH}" -c "import sys;print(sys.executable)"`);
785784

786-
console.log(`Testing linter with python ${pythonPath}`);
785+
// console.log(`Testing linter with python ${pythonPath}`);
787786

788787
// These are integration tests that mock out everything except
789788
// the filesystem and process execution.

src/test/testing/common/testingAdapter.test.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import { PytestTestExecutionAdapter } from '../../../client/testing/testControll
1818
import { UnittestTestDiscoveryAdapter } from '../../../client/testing/testController/unittest/testDiscoveryAdapter';
1919
import { UnittestTestExecutionAdapter } from '../../../client/testing/testController/unittest/testExecutionAdapter';
2020

21-
suite('Functional Tests: test adapters', () => {
21+
suite('End to End Tests: test adapters', () => {
2222
let resultResolver: typeMoq.IMock<ITestResultResolver>;
2323
let pythonTestServer: ITestServer;
2424
let pythonExecFactory: IPythonExecutionFactory;
@@ -40,9 +40,6 @@ suite('Functional Tests: test adapters', () => {
4040
'largeWorkspace',
4141
);
4242
suiteSetup(async () => {
43-
// if (!IS_SMOKE_TEST) {
44-
// this.skip();
45-
// }
4643
serviceContainer = (await initialize()).serviceContainer;
4744
});
4845

0 commit comments

Comments
 (0)