Skip to content

Commit 96fb4a3

Browse files
committed
Fix copy-paste errors
1 parent d908c49 commit 96fb4a3

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

.github/workflows/pr-check.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ jobs:
2626
build-vsix:
2727
name: Build VSIX
2828
runs-on: ubuntu-latest
29-
if: github.repository == 'microsoft/vscode-python'
3029
steps:
3130
- name: Checkout
3231
uses: actions/checkout@v2
@@ -61,7 +60,6 @@ jobs:
6160
lint:
6261
name: Lint
6362
runs-on: ubuntu-latest
64-
if: github.repository == 'microsoft/vscode-python'
6563
steps:
6664
- name: Checkout
6765
uses: actions/checkout@v2
@@ -121,8 +119,8 @@ jobs:
121119
# macOS runners are expensive, and we assume that Ubuntu is enough to cover the Unix case.
122120
os: [ubuntu-latest, windows-latest]
123121
# Run the tests on the oldest and most recent versions of Python.
124-
python: ['3.9']
125-
test-suite: [ts-unit]
122+
python: ['2.7', '3.9']
123+
test-suite: [ts-unit, python-unit, venv, single-workspace, debugger, functional]
126124
exclude:
127125
# For fast PR turn-around, skip 2.7 under Windows.
128126
- os: windows-latest
@@ -324,13 +322,12 @@ jobs:
324322
name: Smoke tests
325323
# The value of runs-on is the OS of the current job (specified in the strategy matrix below) instead of being hardcoded.
326324
runs-on: ${{ matrix.os }}
327-
if: github.repository == 'microsoft/vscode-python'
328325
needs: [build-vsix]
329326
strategy:
330327
fail-fast: false
331328
matrix:
332329
# We're not running CI on macOS for now because it's one less matrix entry to lower the number of runners used,
333-
# macOS runners are expensive, and we assume that Ubuntu is enough to cover the Unix case.
330+
# macOS runners are expensive, and we assume that Ubuntu is enough to cover the UNIX case.
334331
os: [ubuntu-latest, windows-latest]
335332
# 3.8 is still required here so that jupyter can install.
336333
python: [3.8]
@@ -457,9 +454,8 @@ jobs:
457454
coverage:
458455
name: Coverage reports upload
459456
# Don't assume external contributors want to upload the coverage report.
460-
runs-on: ubuntu-latest
461-
needs: [tests]
462457
if: github.repository == 'microsoft/vscode-python'
458+
runs-on: ubuntu-latest
463459
needs: [tests, smoke-tests]
464460
defaults:
465461
run:

0 commit comments

Comments
 (0)