-
Notifications
You must be signed in to change notification settings - Fork 725
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
Add Windows CI #674
base: master
Are you sure you want to change the base?
Add Windows CI #674
Conversation
|
||
def other_tests_packages(): | ||
if platform.system() == 'Windows': | ||
return [] | ||
elif platform.system() == 'Darwin': # Mac OS X | ||
return ['pytype'] | ||
else: | ||
return ['pytype'] | ||
|
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.
Pytype is currently not support windows.
|
||
variables: | ||
PYTHON_VERSION: 3.6 | ||
|
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.
On Windows, the python version must be> = 3.6 to install atari-py.
Some tests fail in Windows CI. |
133492b
to
ad3754a
Compare
Does anyone know how to handle this error?
MS MPI was successfully installed. |
5f21fbf
to
042f6e4
Compare
Description
Use Azure pipeline
10 Free parallel jobs for public projects
Motivation and Context
issue [Enhancement] add windows CI #110
Types of changes
Checklist:
pytest
andpytype
both pass.