-
Notifications
You must be signed in to change notification settings - Fork 129
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
Change ./checkin.py into an entrypoint #71
base: master
Are you sure you want to change the base?
Conversation
setup.py
Outdated
__library_name__ = "southwest" | ||
__here__ = path.dirname(__file__) | ||
|
||
with open(path.join(__here__,"README.md"), "r", "utf-8") as f: |
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.
Missing whitespace after ','
setup.py
Outdated
with open(path.join(__here__,"README.md"), "r", "utf-8") as f: | ||
__readme__ = f.read() | ||
|
||
with open(path.join(__here__, __library_name__ , "VERSION"), "r") as f: |
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.
Whitespace before ','
"vcrpy", | ||
], | ||
extras_require={ | ||
"dev": ["pycodestyle", "pytest", "pytest-cov", "pytest-mock", "requests_mock",] |
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.
Missing whitespace after ','
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.
https://github.com/psf/black does not agree?
Code Climate has analyzed commit d0fa161 and detected 3 issues on this pull request. Here's the issue category breakdown:
The test coverage on the diff in this pull request is 85.7% (50% is the threshold). This pull request will bring the total coverage in the repository to 62.9% (-16.5% change). View more on Code Climate. |
changes:
into:
Also packages the library for wider distribution. Targets were also updated in docker image