Skip to content

Commit

Permalink
Remove safety (#160)
Browse files Browse the repository at this point in the history
  • Loading branch information
skshetry authored Jan 29, 2025
1 parent 3bac1f5 commit 8e0892f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ jobs:
pip --version
nox --version
- name: Lint code and check dependencies
run: nox -s lint safety
- name: Lint code
run: nox -s lint

- name: Run tests
env:
Expand Down
8 changes: 0 additions & 8 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,6 @@ def lint(session: nox.Session) -> None:
session.run("python", "-m", "pylint", *locations)


@nox.session
def safety(session: nox.Session) -> None:
"""Scan dependencies for insecure packages."""
session.install(".[dev]")
session.install("safety")
session.run("safety", "check", "--full-report")


@nox.session
def build(session: nox.Session) -> None:
session.install("build", "setuptools", "twine")
Expand Down

0 comments on commit 8e0892f

Please sign in to comment.