-
Notifications
You must be signed in to change notification settings - Fork 43
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
test on windows #398
test on windows #398
Conversation
oh there's actually no support for python on these systems 😿. I'll see if I can find a workaround, but for now let's continue manual smoke testing. |
@kavigupta ping me when the PR is done? I might need to make some changes. |
python: "3.7" | ||
language: sh | ||
before_install: | ||
- choco install python --version=3.7.2 --params "/InstallDir:C:\\Python" |
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.
Minor, but you don't actually need the double-backslash. Backslashes stay as-is unless followed by one of very few characters (which I think is just dollar sign, quotes, or sometimes an exclamation point).
No description provided.