-
-
Notifications
You must be signed in to change notification settings - Fork 205
Improve Windows coverage and fix Windows tests #1176
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
Merged
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
c63e46f
Improve Windows coverage and fix Windows tests
rocky 3d1815d
Improve Windows coverage and fix Windows tests
rocky 783c2b4
Merge branch 'windows-compatability' of github.com:mathics/Mathics in…
rocky 0f9a0b6
Try Windows CI. One more duplicate key commented out
rocky 91a5590
os.uname -> platform.uname().node
rocky 6919092
More M$ Windows compatability
rocky 57a3296
CI for windows has differenet codepage ...
rocky 6c0a8cc
Character encoding problems on CI
rocky 24ef6a8
Tolerate characterset limited platforms
rocky 91b8c77
Merge branch 'master' into windows-compatability
rocky 00eba88
Merge hell --
rocky 0e87781
Expand Windows test coverage
rocky File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,45 @@ | ||
| name: Mathics (Windows) | ||
|
|
||
| on: | ||
| push: | ||
| branches: [ master ] | ||
| pull_request: | ||
| branches: [ master ] | ||
|
|
||
| jobs: | ||
| build: | ||
| runs-on: windows-latest | ||
| strategy: | ||
| matrix: | ||
| os: [windows] | ||
| python-version: [3.7, 3.8] | ||
| steps: | ||
| - uses: actions/checkout@v2 | ||
| - name: Set up Python ${{ matrix.python-version }} | ||
| uses: actions/setup-python@v2 | ||
| with: | ||
| python-version: ${{ matrix.python-version }} | ||
| - name: Install dependencies | ||
| run: | | ||
| python -m pip install --upgrade pip | ||
| python -m pip install wheel | ||
| choco install llvm | ||
| set LLVM_DIR="C:\Program Files\LLVM" | ||
| pip install llvmlite | ||
| pip install numpy | ||
| pip install sympy | ||
| pip install pillow | ||
| pip install scikit-image | ||
| pip install requests | ||
| pip install wordcloud | ||
| pip install PyYAML | ||
| pip install palettable | ||
| pip install mpmath | ||
| pip install mathics_scanner | ||
| - name: Install Mathics | ||
| run: | | ||
| python setup.py install | ||
| - name: Test Mathics | ||
| run: | | ||
| pip install pytest | ||
| py.test test |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Is TimeConstrained what is failing? or is the expression we have chosen to test it?
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.
I believe the implementation is Unix/POSIX specific. I haven't investigated though.