Skip to content

Commit f6e7b54

Browse files
committed
Reduce tests on macOS and increase limit. Fixes #632
1 parent 262c91a commit f6e7b54

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/main.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,20 @@ on: [push, pull_request]
44

55
jobs:
66
test:
7-
timeout-minutes: 10
7+
timeout-minutes: 15
88
runs-on: ${{ matrix.os }}
99
strategy:
1010
fail-fast: false
1111

1212
matrix:
1313
python-version: [3.6, 3.7, 3.8]
1414
os: [ubuntu-latest, macos-latest]
15+
exclude:
16+
# Only test Python 3.7 on macOS
17+
- os: macos-latest
18+
python-version: 3.6
19+
- os: macos-latest
20+
python-version: 3.8
1521

1622
steps:
1723
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)