Skip to content

Commit

Permalink
Adds dependency checks
Browse files Browse the repository at this point in the history
  • Loading branch information
sobolevn committed Dec 19, 2018
1 parent 18fe9c6 commit 2162888
Show file tree
Hide file tree
Showing 5 changed files with 54 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ script:
- poetry run mypy wemake_python_styleguide
- poetry run pytest
- poetry run doc8 -q docs
- poetry check
- pip check
- safety check --bare --full-report

after_success:
- pip install coveralls
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ We follow Semantic Versions since the `0.1.0` release.
We used to have incremental versioning before `0.1.0`.


## WIP

### Misc

- Adds `safety` and other dependency checks to CI process


## Version 0.6.0

### Features
Expand Down
3 changes: 3 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ test_script:
- "poetry run mypy wemake_python_styleguide"
- "poetry run pytest"
- "poetry run doc8 -q docs"
- "poetry check"
- "pip check"
- "safety check --bare --full-report"

notifications:
- provider: Email
Expand Down
41 changes: 40 additions & 1 deletion poetry.lock

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

1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -80,3 +80,4 @@ doc8 = "^0.8"
m2r = "^0.2"
added-value = "^0.14"
tomlkit = "^0.5"
safety = "^1.8"

0 comments on commit 2162888

Please sign in to comment.