Skip to content

Commit

Permalink
fix: remove safety
Browse files Browse the repository at this point in the history
  • Loading branch information
lsorber authored Dec 30, 2024
1 parent 0b4edb2 commit 9130f5d
Showing 1 changed file with 5 additions and 13 deletions.
18 changes: 5 additions & 13 deletions {{ cookiecutter.__project_name_kebab_case }}/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ pytest-mock = ">=3.14.0"
pytest-xdist = ">=3.5.0"
ruff = ">=0.5.7"
{%- if cookiecutter.development_environment == "strict" %}
safety = ">=3.1.0"
shellcheck-py = ">=0.10.0.1"
typeguard = ">=4.2.1"
{%- endif %}
Expand Down Expand Up @@ -233,18 +232,11 @@ convention = "{{ cookiecutter.__docstring_style|lower }}"

[tool.poe.tasks.lint]
help = "Lint this {{ cookiecutter.project_type }}"

[[tool.poe.tasks.lint.sequence]]
cmd = """
pre-commit run
--all-files
--color always
"""
{%- if cookiecutter.development_environment == "strict" %}

[[tool.poe.tasks.lint.sequence]]
shell = "safety check --continue-on-error --full-report"
{%- endif %}
cmd = """
pre-commit run
--all-files
--color always
"""

[tool.poe.tasks.test]
help = "Test this {{ cookiecutter.project_type }}"
Expand Down

0 comments on commit 9130f5d

Please sign in to comment.