Skip to content

Commit a79fa9b

Browse files
committed
Test downstream projects
1 parent 96e23a8 commit a79fa9b

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

.github/workflows/downstream.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: Test downstream projects
2+
3+
on:
4+
push:
5+
branches: "*"
6+
pull_request:
7+
branches: "*"
8+
9+
jobs:
10+
tests:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- name: Checkout
15+
uses: actions/checkout@v2
16+
17+
- name: Set up Python 3.9
18+
uses: actions/setup-python@v2
19+
with:
20+
python-version: 3.9
21+
22+
- name: Install dependencies
23+
run: |
24+
pip install --upgrade pip
25+
pip install .
26+
pip install pyqt5 pytest \
27+
git+https://github.com/ipython/ipykernel.git#egg=ipykernel[test] \
28+
git+https://github.com/jupyter/qtconsole.git#egg=qtconsole[test] \
29+
nbclient[test] nbconvert[test] jupyter_server[test]
30+
pip freeze
31+
32+
- name: Run tests
33+
run: |
34+
pytest --pyargs ipykernel
35+
#pytest --pyargs qtconsole
36+
pytest --pyargs nbclient
37+
pytest --pyargs nbconvert
38+
pytest --pyargs jupyter_server

0 commit comments

Comments
 (0)