-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add pre commit configuration (original, reworking) #28
Open
evelyn9191
wants to merge
13
commits into
CxAalto:master
Choose a base branch
from
evelyn9191:add-pre-commit-configuration
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
b068b2f
Add pre-commit configuration
evelyn9191 a4ca9dc
Apply changes by Black
evelyn9191 1564b89
Remove duplicated code
evelyn9191 8a1018c
Remove trailing whitespace
evelyn9191 9597133
Resolve unused variables
evelyn9191 26bb11c
Optimize imports
evelyn9191 d5ee642
Fix comments format
evelyn9191 3116f84
Avoid shadowing Python builtins
evelyn9191 3c184d4
Apply Black after rebase
evelyn9191 504a59d
Have mypy ignore some errors
evelyn9191 f9b4464
Fix small syntax issues
evelyn9191 fbc2771
Add flake8 config file
evelyn9191 2b5803c
Fix Cython installation
evelyn9191 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
[flake8] | ||
# Exceptions below are ignored because their solution was not clear to the author of the PR, | ||
# but they should be solved and taken out from the ignore. | ||
ignore = E203, E501, W503, B950, F821, B007, E402, E722, F401, F811, B001, B008, C901, E731, E231, B009, B303, E731, B903, B011 | ||
max-line-length = 100 | ||
max-complexity = 18 | ||
select = A,B,C,E,F,W,T4,B9 | ||
exclude = .git,__pycache__,misc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
stages: | ||
- test | ||
|
||
linting: | ||
stage: test | ||
image: python:3.5-slim | ||
before_script: | ||
- apt-get update | ||
- apt-get install -y git | ||
- pip3 install -U pre-commit==1.21.0 | ||
script: | ||
- pre-commit run --all-files | ||
|
||
test: | ||
stage: test | ||
image: python:3.5 | ||
variables: | ||
PYTHONPATH: $PWD:$PYTHONPATH | ||
script: | ||
- ./setup.py test | ||
|
||
security: | ||
stage: test | ||
image: python:3.5-slim | ||
allow_failure: true | ||
before_script: | ||
- pip install . | ||
- pip install safety | ||
script: | ||
- safety check |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
repos: | ||
- repo: https://github.com/ambv/black | ||
rev: 19.10b0 | ||
hooks: | ||
- id: black | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v2.4.0 | ||
hooks: | ||
- id: flake8 | ||
exclude: misc | ||
additional_dependencies: [ | ||
'flake8==3.7.9', | ||
'flake8-builtins==1.4.2', | ||
'flake8-bugbear==20.1.2', | ||
] | ||
- repo: https://github.com/pycqa/bandit | ||
rev: 1.6.2 | ||
hooks: | ||
- id: bandit | ||
args: [-lll] | ||
- repo: https://github.com/pre-commit/mirrors-mypy | ||
rev: v0.761 | ||
hooks: | ||
- id: mypy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,4 +14,4 @@ | |
|
||
# ax_thumbnail.figure.savefig("test_thumbnail.jpg") | ||
|
||
plt.show() | ||
plt.show() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could this be because install_requires happens only at install time, but cython basically needs to be a dev requirement? Should we make a requirements-dev.txt file which has cython and nose in it? That's what I have done in other projects. Then the first half becomes pip install -r
requirements-dev.txt
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Applied in the new PR.