-
Notifications
You must be signed in to change notification settings - Fork 25
WIP: Test python with 2.7, 3.4 #132
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
Conversation
The versions are used by Kuniwak/vint.
LGTM |
test/run_command.sh python py/vimlparser.py | ||
for python in $(VIMLPARSER_PYTHON_LIST); do \ | ||
test/run_command.sh $$python py/vimlparser.py; \ | ||
done |
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.
Hmm, this only checks for syntax errors I assume?
We would get this also when using flake8 (i.e. the "checkpy" target, #122) - not sure if it would need to run flake8 both via py2 and py3 (usually using py3 only is fine).
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 assumption was wrong - it actually runs tests, and it makes sense to have this then with py2 and py3 I guess.
I'd rather do this via / with #122. But for doing this explicitly, you could probably just use "python3" explicitly. |
As for vint, it tests with py27, and py{34,35,36,37) - but that's really not necessary here. |
Okay, so can you take this over in #122 ? |
@tyru |
Thanks! |
Done in #134. |
Fix #131
The versions are used by Kuniwak/vint.