##// END OF EJS Templates
Add Github CI on Mac
Thomas Kluyver -
Show More
@@ -0,0 +1,23 b''
1 name: Run tests
2
3 on: [push, pull_request]
4
5 jobs:
6 test:
7 runs-on: macos-latest
8
9 steps:
10 - uses: actions/checkout@v2
11 - name: Set up Python 3.7
12 uses: actions/setup-python@v2
13 with:
14 python-version: 3.7
15 - name: Install and update Python dependencies
16 run: |
17 python -m pip install --upgrade pip setuptools wheel
18 python -m pip install --upgrade -e file://$PWD#egg=ipython[test]
19 python -m pip install --upgrade --upgrade-strategy eager trio curio
20 python -m pip install --upgrade pytest pytest-trio 'matplotlib!=3.2.0'
21 python -m pip install --upgrade anyio
22 - name: pytest
23 run: pytest
@@ -1,6 +1,6 b''
1 name: Run tests
1 name: Run tests
2
2
3 on: [push]
3 on: [push, pull_request]
4
4
5 jobs:
5 jobs:
6 test:
6 test:
General Comments 0
You need to be logged in to leave comments. Login now