This repository has been archived by the owner on Nov 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 187
Refactor - split to modules, add parser tests, update readme #200
Merged
Merged
Changes from 17 commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
18959c0
Merge remote-tracking branch 'refs/remotes/PyCQA/master' into astroid
Nurdok 190b0c2
Split code into files - and all tests pass again
Nurdok 0c11410
Wrote some tests and working on replacing the parser with astroid.
Nurdok 1f21307
Saving astroid stuff.
Nurdok 100cd80
Started to use redbaron.
Nurdok 0d7678d
Some tests pass with redbaron.
Nurdok f9eb3c5
Reverted astroid / redbaron attempts, but kept split files / parser t…
Nurdok 1c88e4d
Hotfix for "yield X from Y" bug.
Nurdok ccd9a73
All tests pass for now.
Nurdok f4ac91a
More refactoring.
Nurdok a7b0d83
Tox fixes.
Nurdok 7337fa2
Attempt to fix docs build.
Nurdok bb32c92
Separated requirements.
Nurdok deffd33
Fixed "main" packaging.
Nurdok cab6da3
Remove redundant import in __init__.py file.
Nurdok dcff6aa
Merge branch 'master' into splitfiles
Nurdok 74e68b7
Release notes + preserve original API import.
Nurdok 76d7ced
Updated the docstring for `check`.
Nurdok 1d6c00b
Fixed repeated assignments of `code`.
Nurdok 807e79f
Moved `tests` directory one directory up, to `src`.
Nurdok 62610d6
Named module (-m) support (for Python >= 2.7).
Nurdok 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
-r requirements/docs.txt | ||
-r requirements/tests.txt | ||
-r requirements/test_env.txt | ||
-r requirements/runtime.txt |
File renamed without changes.
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 @@ | ||
tox |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
pytest==2.7.3 | ||
pytest-pep8 | ||
mock | ||
tox | ||
pytest==3.0.2 | ||
pytest-pep8==1.0.6 | ||
mock==2.0.0 | ||
pathlib | ||
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.
So, I have a quibble with this file. Is tox a test dependency and the rest are dependencies enumerated in tox, or are these test dependencies and tox is a different kind of requirement?
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.
Separated to
tests.txt
andtest_env.txt
.