-
Notifications
You must be signed in to change notification settings - Fork 18
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
Egork/flake8 #171
Open
egork520
wants to merge
34
commits into
main
Choose a base branch
from
egork/flake8
base: main
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
Egork/flake8 #171
Changes from all commits
Commits
Show all changes
34 commits
Select commit
Hold shift + click to select a range
4f4c5c6
Moving vila test to a class so that pytest ./test works locally
egork520 ff18984
Added notes on how to run unit tests locally
egork520 7f7bd66
Moving change of directory to the setUp class. Locally tests fails in…
egork520 747ace4
Moving change of directory to the setUp class. Locally tests fails in…
egork520 a425583
Creating variable for the fixtures path
egork520 38b76b3
Adding pytest.ini no need to type the folder for the tests
egork520 425b072
Adding exact command for selecting tests, removing directory name, we…
egork520 5c1ec12
Adding test install dependencies, for running tests on multiple cpus,…
egork520 062f953
Command for running tests on multiple cpus
egork520 55689ae
Adding test requirements installation to the mmda-ci.yml
egork520 9e1bf61
Adding plugin for running converage more easily, removing coverage
egork520 6fbf179
Adding coverage config file,
egork520 4035404
Adding coverage lower bound 57%, specifying module for which to measu…
egork520 9d9d4d7
Removing individual config files in favore of setup.cfg file
egork520 7739963
Update tests/test_predictors/test_vila_predictors.py
egork520 d0f7117
Update tests/test_predictors/test_vila_predictors.py
egork520 faded77
Update tests/test_predictors/test_vila_predictors.py
egork520 ac54653
Update tests/test_predictors/test_vila_predictors.py
egork520 c1b97fd
Update tests/test_predictors/test_figure_table_predictors.py
egork520 cd06980
Update tests/test_parsers/test_pdf_plumber_parser.py
egork520 fb00985
Update tests/test_parsers/test_pdf_plumber_parser.py
egork520 69e1c7b
Update tests/test_parsers/test_pdf_plumber_parser.py
egork520 55cd37d
Update tests/test_parsers/test_pdf_plumber_parser.py
egork520 ffa7b56
Rolling in test dependencies into dev
egork520 c26c46b
Fixing typos
egork520 5e4b09f
Adding parameters for the coverage
egork520 45eff40
Specifying percentage of the coverage in the builds
egork520 641b542
Updating comments about pytest
egork520 cf0436b
Merge branch 'main' of github.com:allenai/mmda into egork/flake8
egork520 6ba65aa
First part of lint fixing
egork520 690c690
Second part of lint fixing
egork520 7ad0d57
Skip old code
egork520 0a9786a
Adding flake8 run to the compile step
egork520 46961d6
Adding a note on how to run the flake8 test
egork520 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
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 |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
|
||
__all__ = [ | ||
'PDFPlumberParser' | ||
] | ||
] |
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 |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
|
||
|
||
class BaseHeuristicPredictor(BasePredictor): | ||
REQUIRED_BACKENDS = [] | ||
REQUIRED_BACKENDS = [] |
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.
#noqa
is a blanket ignore, we should use specific errors ignore instead.