Skip to content

Commit 97d9adb

Browse files
authored
Merge pull request #679 from fortran-lang/feat/minor-changes
Minor changes
2 parents 7909703 + 7156d0f commit 97d9adb

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

test/integration/runTest.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ import { spawnSync } from 'child_process';
66
async function main() {
77
try {
88
// Install PyPi dependencies
9-
const results = spawnSync(`pip`, [
9+
const results = spawnSync(`python3`, [
10+
'-m',
11+
'pip',
1012
'install',
1113
'-r',
1214
path.resolve(__dirname, '../../../test/requirements.txt'),

test/requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
fypp
12
fortls
23
findent
34
fprettify

test/unitTest/runTest.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ import { spawnSync } from 'child_process';
66
async function main() {
77
try {
88
// Install PyPi dependencies
9-
const results = spawnSync(`pip`, [
9+
const results = spawnSync(`python3`, [
10+
'-m',
11+
'pip',
1012
'install',
1113
'-r',
1214
path.resolve(__dirname, '../../../test/requirements.txt'),

0 commit comments

Comments
 (0)