Skip to content

Commit

Permalink
Fix typo at logging.py file (#1204)
Browse files Browse the repository at this point in the history
* Fix typo at logging.py file

* Ignore sphinx@2 security issue for now

Ignoring sphinx@2 security issue for now, see: miyakogi/m2r#51
  • Loading branch information
Dmytro Litvinov committed Jun 20, 2020
1 parent 71ddb1a commit 4fe92ab
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,6 @@ jobs:
poetry run sh tests/test_integration.sh
poetry run poetry check
poetry run pip check
poetry run safety check --bare --full-report
# Ignoring sphinx@2 security issue for now, see:
# https://github.com/miyakogi/m2r/issues/51
poetry run safety check --bare --full-report -i 38330
4 changes: 3 additions & 1 deletion {{cookiecutter.project_name}}/docker/ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,9 @@ run_ci () {

# Checking if all the dependencies are secure and do not have any
# known vulnerabilities:
safety check --bare --full-report
# Ignoring sphinx@2 security issue for now, see:
# https://github.com/miyakogi/m2r/issues/51
safety check --bare --full-report -i 38330

# Checking `pyproject.toml` file contents:
poetry check
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
'version': 1,
'disable_existing_loggers': False,

# We use these formatters in our `'handlers'` configration.
# We use these formatters in our `'handlers'` configuration.
# Probably, you won't need to modify these lines.
# Unless, you know what you are doing.
'formatters': {
Expand Down

0 comments on commit 4fe92ab

Please sign in to comment.