We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2bf0c6f commit 1b1a0a1Copy full SHA for 1b1a0a1
.github/workflows/ci.yml
@@ -23,9 +23,6 @@ jobs:
23
matrix:
24
os: [ubuntu-latest, windows-latest, macos-latest]
25
python-version: ["3.11", "3.12", "3.13"]
26
- include:
27
- - os: ubuntu-latest
28
- python-version: "pypy-3.11"
29
steps:
30
- name: Checkout
31
uses: actions/checkout@v4
tests/test_kernelapp.py
@@ -1,3 +1,4 @@
1
+import gc
2
import json
3
import os
4
import threading
@@ -30,6 +31,7 @@ def test_blackhole():
32
33
def test_start_app():
34
+ gc.collect()
35
app = IPKernelApp()
36
app.kernel = MockKernel()
37
0 commit comments