Change default numpy2 printing options in test.py
.
#2
Workflow file for this run
This file contains 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
name: CI-Windows | |
on: | |
push: | |
branches: [ '*' ] | |
paths-ignore: # Don't trigger on files that are updated by the CI | |
- README.md | |
pull_request: | |
branches: [ master ] | |
jobs: | |
test: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: conda-incubator/setup-miniconda@v2 | |
with: | |
activate-environment: polze_env | |
python-version: 3.9 | |
auto-activate-base: false | |
miniconda-version: "latest" | |
auto-update-conda: true | |
add-pip-as-python-dependency: true | |
- name: Install | |
shell: bash -l {0} | |
run: | | |
python -m pip install -e . | |
- name: Test | |
shell: bash -l {0} | |
run: | | |
python -m polze.test | |