From 51645ff54fb5e4097704af8f87047ed01e4a8de0 Mon Sep 17 00:00:00 2001 From: pseusys Date: Fri, 10 Nov 2023 19:20:12 +0100 Subject: [PATCH] default script type changed --- pyproject.toml | 3 +++ scripts/test.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 7801f7b9b..5d810e796 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -181,6 +181,9 @@ jupyter = "1.0.0" +[tool.poe] +default_task_type = "script" + [tool.poe.tasks] info = "scripts.misc:info" lint = "scripts.codestyle:lint" diff --git a/scripts/test.py b/scripts/test.py index 3940fb81b..317f53c3a 100644 --- a/scripts/test.py +++ b/scripts/test.py @@ -12,7 +12,7 @@ def _test(coverage: bool, dependencies: bool) -> int: """ Run framework tests, located in `tests/` dir, using env defined in `.env_file`. Please keep in mind that: - + 1. Skipping `telegram` tests is **always** allowed. 2. Enabling dependencies is effectively same as enabling docker (docker containers **should** be running in that case).