Skip to content

Commit a7272e9

Browse files
authored
Removed spyder downstream tests (#1486)
As suggested [here](#1482 (comment)), this removes the spyder downstream tests to avoid delaying more the PRs on ipykernel. Done in a dedicated PR so it's easier to retrieve this change in the history if we need to add them back at some point.
2 parents fedd4ec + 82c3047 commit a7272e9

File tree

1 file changed

+0
-64
lines changed

1 file changed

+0
-64
lines changed

.github/workflows/downstream.yml

Lines changed: 0 additions & 64 deletions
Original file line numberDiff line numberDiff line change
@@ -86,67 +86,3 @@ jobs:
8686
cd jupyter_kernel_test
8787
pip install -e ".[test]"
8888
python test_ipykernel.py
89-
90-
qtconsole:
91-
runs-on: ubuntu-latest
92-
timeout-minutes: 20
93-
steps:
94-
- name: Checkout
95-
uses: actions/checkout@v6
96-
- name: Setup Python
97-
uses: actions/setup-python@v6
98-
with:
99-
python-version: "3.10"
100-
architecture: "x64"
101-
- name: Install System Packages
102-
run: |
103-
sudo apt-get update
104-
sudo apt-get install -y --no-install-recommends '^libxcb.*-dev' libx11-xcb-dev libglu1-mesa-dev libxrender-dev libxi-dev libxkbcommon-dev libxkbcommon-x11-dev
105-
- name: Install qtconsole dependencies
106-
shell: bash -l {0}
107-
run: |
108-
cd ${GITHUB_WORKSPACE}/..
109-
git clone https://github.com/spyder-ide/qtconsole.git
110-
cd qtconsole
111-
${pythonLocation}/bin/python -m pip install -e ".[test]"
112-
${pythonLocation}/bin/python -m pip install pyqt5
113-
- name: Install Ipykernel changes
114-
shell: bash -l {0}
115-
run: ${pythonLocation}/bin/python -m pip install -e .
116-
- name: Test qtconsole
117-
shell: bash -l {0}
118-
run: |
119-
cd ${GITHUB_WORKSPACE}/../qtconsole
120-
xvfb-run --auto-servernum ${pythonLocation}/bin/python -m pytest -x -vv -s --full-trace --color=yes qtconsole -k "not test_scroll"
121-
122-
spyder_kernels:
123-
runs-on: ubuntu-latest
124-
if: false
125-
timeout-minutes: 20
126-
steps:
127-
- name: Checkout
128-
uses: actions/checkout@v6
129-
- name: Setup Python
130-
uses: actions/setup-python@v6
131-
with:
132-
python-version: "3.10"
133-
architecture: "x64"
134-
- name: Install System Packages
135-
run: |
136-
sudo apt-get update
137-
sudo apt-get install -y --no-install-recommends libgl1 libglx-mesa0
138-
- name: Install spyder-kernels dependencies
139-
shell: bash -l {0}
140-
run: |
141-
cd ${GITHUB_WORKSPACE}/..
142-
git clone https://github.com/spyder-ide/spyder-kernels.git
143-
cd spyder-kernels
144-
${pythonLocation}/bin/python -m pip install -e ".[test]"
145-
- name: Install IPykernel changes
146-
shell: bash -l {0}
147-
run: ${pythonLocation}/bin/python -m pip install -e .
148-
- name: Test spyder-kernels
149-
shell: bash -l {0}
150-
run: |
151-
cd ${GITHUB_WORKSPACE}/../spyder-kernels
152-
xvfb-run --auto-servernum ${pythonLocation}/bin/python -m pytest -x -vv -s --full-trace --color=yes spyder_kernels

0 commit comments

Comments
 (0)