Skip to content

Commit f7936fe

Browse files
committed
Per PR comments: Don't use USE_PYTHON in CI, prefer that for developer environments..
1 parent 163fb45 commit f7936fe

File tree

2 files changed

+0
-12
lines changed

2 files changed

+0
-12
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,13 @@ jobs:
4343
- name: Test
4444
run: npm run test
4545
env:
46-
USE_PYTHON: python
4746
LC_ALL: C.UTF-8
4847
LANG: C.UTF-8
4948
if: matrix.os != 'macOS-latest'
5049

5150
- name: Test (Mac)
5251
run: npm run test
5352
env:
54-
USE_PYTHON: python
5553
LC_ALL: en_US.UTF-8
5654
LANG: en_US.UTF-8
5755
if: matrix.os == 'macOS-latest'

test.js

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -130,16 +130,6 @@ const availablePythons = (() => {
130130
// For running outside of CI
131131
binaries.push(
132132
'python',
133-
'python3',
134-
'python3.6',
135-
'python36',
136-
'python3.7',
137-
'python37',
138-
'python3.8',
139-
'python38',
140-
'python2',
141-
'python2.7',
142-
'python27'
143133
);
144134
}
145135
const exe = process.platform === 'win32' ? '.exe' : '';

0 commit comments

Comments
 (0)