Skip to content

Commit 1b1a0a1

Browse files
committed
Don't test on pypy, add more gc.collect()
1 parent 2bf0c6f commit 1b1a0a1

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,6 @@ jobs:
2323
matrix:
2424
os: [ubuntu-latest, windows-latest, macos-latest]
2525
python-version: ["3.11", "3.12", "3.13"]
26-
include:
27-
- os: ubuntu-latest
28-
python-version: "pypy-3.11"
2926
steps:
3027
- name: Checkout
3128
uses: actions/checkout@v4

tests/test_kernelapp.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import gc
12
import json
23
import os
34
import threading
@@ -30,6 +31,7 @@ def test_blackhole():
3031

3132

3233
def test_start_app():
34+
gc.collect()
3335
app = IPKernelApp()
3436
app.kernel = MockKernel()
3537

0 commit comments

Comments
 (0)