diff options
-rw-r--r-- | .github/workflows/wee-slack.yml | 2 | ||||
-rw-r--r-- | pyproject.toml | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/wee-slack.yml b/.github/workflows/wee-slack.yml index 0069dc1..377c1b4 100644 --- a/.github/workflows/wee-slack.yml +++ b/.github/workflows/wee-slack.yml @@ -28,7 +28,7 @@ jobs: - run: poetry run ruff check - - run: poetry run pyright main.py slack tests typings + - run: poetry run pyright - run: poetry run pytest tests diff --git a/pyproject.toml b/pyproject.toml index 0d3fee3..bf3bcd9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -45,6 +45,7 @@ disable = [ pythonVersion = "3.7" strict = ["**"] reportMissingModuleSource = false +include = ["main.py", "slack", "tests", "typings"] [tool.ruff] extend-exclude = ["typings/weechat.pyi", "wee_slack.py", "_pytest"] |