Skip to content

Commit c662ebc

Browse files
committed
check version
1 parent 9783b84 commit c662ebc

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/test/extension.lint.test.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,8 +143,9 @@ suiteSetup(done => {
143143
initialize().then(() => {
144144
pythonSettings.pythonPath = '/Users/donjayamanne/Desktop/Development/Python/Temp/MyEnvs/p3/bin/python';
145145
execPythonFile('python', ['--version'], __dirname, true).then(value => {
146-
console.log(value);
147-
146+
console.log("Python Version" + value);
147+
console.log(process.env['$TRAVIS_PYTHON_VERSION']);
148+
console.log(process.env['TRAVIS_PYTHON_VERSION']);
148149
isPython3 = value.indexOf('3.') >= 0;
149150
if (isPython3) {
150151
pylintMessagesToBeReturned = pyLint3MessagesToBeReturned;

0 commit comments

Comments
 (0)