-
Notifications
You must be signed in to change notification settings - Fork 27
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
Fix Python workflow #170
Fix Python workflow #170
Conversation
2b0e8f0
to
fa147b5
Compare
fa147b5
to
04b4176
Compare
Running the python-tests workflow against Python 3.8 was causing pylint issues. This temporarily skips running the tests against 3.8 as well as linting for all versions since 3.8 is used in the workflow. More recent versions of Python should be supported but this unblocks releases for now.
9a14d65
to
75b7a37
Compare
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 is for Shopify employees development environment. | ||
# If you are an external contributor you don't have to bother with it. | ||
name: ci-queue | ||
|
||
vm: | ||
image: /opt/dev/misc/railgun-images/default | ||
ip_address: 192.168.64.245 | ||
memory: 1G | ||
cores: 2 | ||
volumes: | ||
root: 512M | ||
services: | ||
- redis |
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.
why was this change needed?
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.
@casperisfine any thoughts on whether there should be a version bump with these changes? |
Not particularly no. I mean this just fixes the CI. Not much point cutting a release. |
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.
The current version is 0.20.9 and hasn't been tagged or released so it seems fine to not have to bump it.
Running the python-tests workflow against Python 3.8 was causing pylint issues.
This temporarily skips running the tests against 3.8 as well as linting for all versions since 3.8 is used in the workflow.
More recent versions of Python should be supported but this unblocks releases for now.