Skip to content

Commit 461396d

Browse files
committed
Change Safety check to only check non-dev dependencies
1 parent d508896 commit 461396d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.circleci/config.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ jobs:
1818
- run:
1919
name: Install Dependencies
2020
command: |
21-
pip install --upgrade pip
2221
pip install poetry --user --upgrade
2322
poetry config virtualenvs.in-project true
2423
poetry install
@@ -37,7 +36,7 @@ jobs:
3736

3837
- run:
3938
name: Safety
40-
command: poetry run safety check
39+
command: poetry export -f requirements.txt | poetry run safety check --stdin
4140

4241
- run:
4342
name: mypy

0 commit comments

Comments
 (0)