|
86 | 86 | cd jupyter_kernel_test |
87 | 87 | pip install -e ".[test]" |
88 | 88 | 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