Skip to content

Commit 156361d

Browse files
Fix ci for pipenv and reduce test matrix (#323)
1 parent 9a11568 commit 156361d

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.github/workflows/e2e-cache.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
fail-fast: false
2222
matrix:
2323
os: [ubuntu-latest, windows-latest, macos-latest]
24-
python-version: ['3.7', '3.8', '3.9', 'pypy-3.7-v7.3.5', 'pypy-3.7-v7.x']
24+
python-version: ['3.8', '3.9', 'pypy-3.7-v7.x']
2525
steps:
2626
- uses: actions/checkout@v2
2727
- name: Setup Python
@@ -39,18 +39,18 @@ jobs:
3939
fail-fast: false
4040
matrix:
4141
os: [ubuntu-latest, windows-latest, macos-latest]
42-
python-version: ['3.7', '3.8', '3.9', 'pypy-3.7-v7.3.5', 'pypy-3.7-v7.x']
42+
python-version: ['3.8', '3.9', 'pypy-3.7-v7.x']
4343
steps:
4444
- uses: actions/checkout@v2
45-
- name: Install pipenv
46-
run: pipx install pipenv
4745
- name: Setup Python
4846
uses: ./
4947
with:
5048
python-version: ${{ matrix.python-version }}
5149
cache: 'pipenv'
50+
- name: Install pipenv
51+
run: pipx install pipenv
5252
- name: Install dependencies
53-
run: pipenv install flake8
53+
run: pipenv install numpy
5454

5555
python-pip-dependencies-caching-path:
5656
name: Test pip (Python ${{ matrix.python-version}}, ${{ matrix.os }})
@@ -59,7 +59,7 @@ jobs:
5959
fail-fast: false
6060
matrix:
6161
os: [ubuntu-latest, windows-latest, macos-latest]
62-
python-version: ['3.7', '3.8', '3.9', 'pypy-3.7-v7.3.5', 'pypy-3.7-v7.x']
62+
python-version: ['3.8', '3.9', 'pypy-3.7-v7.x']
6363
steps:
6464
- uses: actions/checkout@v2
6565
- name: Setup Python
@@ -78,16 +78,16 @@ jobs:
7878
fail-fast: false
7979
matrix:
8080
os: [ubuntu-latest, windows-latest, macos-latest]
81-
python-version: ['3.7', '3.8', '3.9', 'pypy-3.7-v7.3.5', 'pypy-3.7-v7.x']
81+
python-version: ['3.8', '3.9', 'pypy-3.7-v7.x']
8282
steps:
8383
- uses: actions/checkout@v2
84-
- name: Install pipenv
85-
run: pipx install pipenv
8684
- name: Setup Python
8785
uses: ./
8886
with:
8987
python-version: ${{ matrix.python-version }}
9088
cache: 'pipenv'
9189
cache-dependency-path: '**/requirements-linux.txt'
90+
- name: Install pipenv
91+
run: pipx install pipenv
9292
- name: Install dependencies
93-
run: pipenv install flake8
93+
run: pipenv install numpy

.github/workflows/test-python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ jobs:
9797
strategy:
9898
fail-fast: false
9999
matrix:
100-
os: [macos-10.15, windows-latest, ubuntu-18.04, ubuntu-20.04]
100+
os: [macos-10.15, windows-2019, ubuntu-18.04, ubuntu-20.04]
101101
steps:
102102
- name: Checkout
103103
uses: actions/checkout@v2

0 commit comments

Comments
 (0)