From 25f939df831924442fc1d4d6aab8b02fdb42f168 Mon Sep 17 00:00:00 2001 From: David Brochart Date: Fri, 20 Dec 2024 10:13:43 +0100 Subject: [PATCH] - --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1e7636d3..4bea26fc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -55,13 +55,13 @@ jobs: timeout-minutes: 15 if: ${{ !startsWith( matrix.python-version, 'pypy' ) && !startsWith(matrix.os, 'windows') }} run: | - PYTHONTRACEMALLOC=20 hatch run cov:test --cov-fail-under 50 || PYTHONTRACEMALLOC=20 hatch run test:test --lf + PYTHONTRACEMALLOC=20 hatch run cov:test --cov-fail-under 50 -k test_print_to_correct_cell || PYTHONTRACEMALLOC=20 hatch run test:test --lf -k test_print_to_correct_cell - name: Run the tests on pypy timeout-minutes: 15 if: ${{ startsWith( matrix.python-version, 'pypy' ) }} run: | - PYTHONTRACEMALLOC=20 hatch run test:nowarn || PYTHONTRACEMALLOC=20 hatch run test:nowarn --lf + PYTHONTRACEMALLOC=20 hatch run test:nowarn -k test_print_to_correct_cell || PYTHONTRACEMALLOC=20 hatch run test:nowarn --lf -k test_print_to_correct_cell - name: Run the tests on Windows timeout-minutes: 15 @@ -69,8 +69,8 @@ jobs: run: | hatch run test:pip list hatch run test:python --version - hatch run test:python -m pip install git+https://github.com/ipython/ipython@92dd9e47fe8862ee38770744c165b680cb5241b1 - PYTHONTRACEMALLOC=20 hatch run test:pytest -v + #hatch run test:python -m pip install git+https://github.com/ipython/ipython@92dd9e47fe8862ee38770744c165b680cb5241b1 + PYTHONTRACEMALLOC=20 hatch run test:pytest -v -k test_print_to_correct_cell - name: Check Launcher run: |