Skip to content

Commit

Permalink
Safety isn't working at sll for me any more.
Browse files Browse the repository at this point in the history
  • Loading branch information
brunns committed May 13, 2024
1 parent 094efe7 commit 34b7cf4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ jobs:
- name: Lint
run: tox -e flake8 refurb
- name: Security checks
run: tox -e bandit,safety
run: tox -e bandit
- name: Check types
run: tox -e pyright,mypy
- name: Build docs
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,17 +87,17 @@ Currently, the `Makefile` targets use Python 3.8 and 3.11 via tox, so a quick-st

```sh
brew install pyenv colima docker
versions=(3.7 3.11)
versions=(3.8 3.12)
for v in "${versions[@]}"; do pyenv install $v -s; done
pyenv local 3.11 3.7
pyenv local 3.8 3.12
pip install tox tox-pyenv
colima start
```

In order to run `make test`, you'll also need to have Mountebank installed locally:

```sh
npm install mountebank@2.6 --production
npm install mountebank@2.9 --production
```

(`mbtest` is tested against Mountebank versions back as far as 1.16, but obviously only features supported by the Mountebank version you're using will work.)
Expand Down
8 changes: 0 additions & 8 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -119,14 +119,6 @@ deps =
commands =
pyright src/ {posargs}

[testenv:safety]
basepython = python3
deps =
safety>=2.0
commands =
safety check
usedevelop=False

[testenv:pipdeptree]
basepython = python3
deps =
Expand Down

0 comments on commit 34b7cf4

Please sign in to comment.