From 4ef70c2ca0ece08c034ab42e640bffc894a65bc6 Mon Sep 17 00:00:00 2001 From: David Brochart Date: Tue, 24 Oct 2023 11:07:10 +0200 Subject: [PATCH] Test outstream --- .github/workflows/ci.yml | 2 +- pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8187aa0d..062ff292 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -138,7 +138,7 @@ jobs: - name: Run the tests timeout-minutes: 15 - run: pytest -W default -vv || pytest --vv -W default --lf + run: pytest -W default -vv -s -k test_outstream || pytest --vv -s -k test_outstream -W default --lf test_miniumum_versions: name: Test Minimum Versions diff --git a/pyproject.toml b/pyproject.toml index 8f9ac894..48f19877 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -92,13 +92,13 @@ api = "sphinx-apidoc -o docs/api -f -E ipykernel tests ipykernel/datapub.py ipyk features = ["test"] [tool.hatch.envs.test.scripts] list = "python -m pip freeze" -test = "python -m pytest -vv {args}" +test = "python -m pytest -vv -s -k test_outstream {args}" nowarn = "test -W default {args}" [tool.hatch.envs.cov] features = ["test", "cov"] [tool.hatch.envs.cov.scripts] -test = "python -m pytest -vv --cov ipykernel --cov-branch --cov-report term-missing:skip-covered {args}" +test = "python -m pytest -vv -s -k test_outstream --cov ipykernel --cov-branch --cov-report term-missing:skip-covered {args}" nowarn = "test -W default {args}" [[tool.hatch.envs.cov.matrix]]