From 5da1130f84e3820e76f1e1202fe6d299e1bb16f3 Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Fri, 5 Jul 2024 13:08:44 -0300 Subject: [PATCH] chore: add `--ignore=tests/integration` flag from pytest command in pyproject.toml and remove unit (#2468) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- pyproject.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index e6665238967..c8ddd43e331 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -154,10 +154,9 @@ markers = ["async_test", "api_key_required"] [tool.coverage.run] command_line = """ - -m pytest + -m pytest --ignore=tests/integration --cov --cov-report=term --cov-report=html --instafail -ra -n auto -m "not api_key_required" - tests/unit """ source = ["src/backend/base/langflow/"] omit = ["*/alembic/*", "tests/*", "*/__init__.py"]