-
Notifications
You must be signed in to change notification settings - Fork 86
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
Testing on Windows CircleCI #226
Conversation
Codecov Report
@@ Coverage Diff @@
## master #226 +/- ##
=======================================
Coverage 96.57% 96.57%
=======================================
Files 92 92
Lines 2422 2422
=======================================
Hits 2339 2339
Misses 83 83 Continue to review full report at Codecov.
|
Running the unit tests on Windows requires three additional containers that run slightly longer than the linux containers. Do we want the Windows containers to run with every commit across all branches or should they only run on the master branch? |
I feel like running it on every commit would be overkill. |
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.
LGTM other than maybe running it only for master? @kmax12
.circleci/config.yml
Outdated
- run: | ||
name: Download Miniconda | ||
command: | | ||
$File = ".\Miniconda3-4.7.12.1-Windows-x86_64.exe" |
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.
Can we create a config variable so when we update the miniconda version we only need to change the name once?
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.
Updated to have file name (with version) as well as the file hash as a parameter.
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.
Looks good!
Resolves #142