-
-
Notifications
You must be signed in to change notification settings - Fork 113
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
Merge functional #20
Merge functional #20
Conversation
Get mcmc sampling to work
Add credits
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.
Do you know what needs to be done to fix the build? Looks fine to me otherwise.
@@ -0,0 +1,2 @@ | |||
[pycodestyle] | |||
max-line-length = 120 |
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.
this file should be removed (pylint handles this check)
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.
i think its overriding the default of 79 characters
.pylintrc
Outdated
@@ -323,7 +323,7 @@ ignore-on-opaque-inference=yes | |||
# List of class names for which member attributes should not be checked (useful | |||
# for classes with dynamically set attributes). This supports the use of | |||
# qualified names. | |||
ignored-classes=optparse.Values,thread._local,_thread._local | |||
ignored-classes=optparse.Values,thread._local,_thread._local, Context |
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.
is Context
still needed to be ignored?
.pylintrc
Outdated
@@ -54,7 +54,7 @@ confidence= | |||
# --enable=similarities". If you want to run only the classes checker, but have | |||
# no Warning level messages displayed, use"--disable=all --enable=classes | |||
# --disable=W" | |||
disable=missing-docstring | |||
disable=missing-docstring, C0103 |
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.
should use full name for C0103
(i think invalid-constant-name
)
- pytest -xv --cov=pymc4/ test/ | ||
- python -m pylint pymc4/ | ||
- python -m pytest -xv --cov=pymc4/ tests/ | ||
- pycodestyle --show-source --show-pep8 pymc4/ tests/ |
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.
ah, hadn't noticed pycodestyle is still being run. is there a good reason for that and pylint? in my experience it is faster, but less comprehensive.
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.
@ferrine had added it. Any reasons?
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.
I believe pycodestyle is better for style checks and linter for spotting typos
Pull Request Test Coverage Report for Build 64
💛 - Coveralls |
No description provided.