Skip to content

Commit

Permalink
chores: ensure that we run all check in the correct environment
Browse files Browse the repository at this point in the history
  • Loading branch information
tngraf committed Dec 26, 2023
1 parent cfa7a26 commit 29deba7
Show file tree
Hide file tree
Showing 3 changed files with 106 additions and 4 deletions.
4 changes: 2 additions & 2 deletions RunChecks.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@

poetry run flake8
npx -q markdownlint-cli *.md
isort .
mypy .
poetry run isort .
poetry run mypy .


# -----------------------------------
Expand Down
101 changes: 100 additions & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,15 @@ classifiers = [
[tool.poetry.dependencies]
python = "^3.8"

[tool.poetry.dev-dependencies]
[tool.poetry.group.dev.dependencies]
colorama = "^0.4.3"
flake8 = ">=3.9.2"
requests = "^2.22.0"
pytest = ">=7.2.0"
coverage = ">=6.5.0"
mypy = "^1.8.0"
isort = "^5.13.2"
types-colorama = "^0.4.15.12"

[build-system]
requires = ["poetry>=0.12"]
Expand Down

0 comments on commit 29deba7

Please sign in to comment.