Skip to content

Commit

Permalink
rename, fix error on other test
Browse files Browse the repository at this point in the history
  • Loading branch information
eleanorjboyd committed Aug 14, 2023
1 parent 9550eaf commit 9a60b2e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
5 changes: 2 additions & 3 deletions src/test/linters/lint.functional.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
'use strict';

import * as assert from 'assert';
import * as childProcess from 'child_process';
import * as fs from 'fs-extra';
import * as os from 'os';
import * as path from 'path';
Expand Down Expand Up @@ -781,9 +780,9 @@ suite('Linting Functional Tests', () => {
sinon.restore();
});

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

console.log(`Testing linter with python ${pythonPath}`);
// console.log(`Testing linter with python ${pythonPath}`);

// These are integration tests that mock out everything except
// the filesystem and process execution.
Expand Down
5 changes: 1 addition & 4 deletions src/test/testing/common/testingAdapter.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import { PytestTestExecutionAdapter } from '../../../client/testing/testControll
import { UnittestTestDiscoveryAdapter } from '../../../client/testing/testController/unittest/testDiscoveryAdapter';
import { UnittestTestExecutionAdapter } from '../../../client/testing/testController/unittest/testExecutionAdapter';

suite('Functional Tests: test adapters', () => {
suite('End to End Tests: test adapters', () => {
let resultResolver: typeMoq.IMock<ITestResultResolver>;
let pythonTestServer: ITestServer;
let pythonExecFactory: IPythonExecutionFactory;
Expand All @@ -40,9 +40,6 @@ suite('Functional Tests: test adapters', () => {
'largeWorkspace',
);
suiteSetup(async () => {
// if (!IS_SMOKE_TEST) {
// this.skip();
// }
serviceContainer = (await initialize()).serviceContainer;
});

Expand Down

0 comments on commit 9a60b2e

Please sign in to comment.