Merge pull request #97 from ok97465/fix_for_spyder6_api #120
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
| name: Macos tests | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| macos: | |
| name: Mac Py${{ matrix.PYTHON_VERSION }} | |
| runs-on: macos-latest | |
| env: | |
| CI: True | |
| PYTHON_VERSION: ${{ matrix.PYTHON_VERSION }} | |
| RUNNER_OS: 'macos' | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| PYTHON_VERSION: ['3.9', '3.10', '3.11'] | |
| steps: | |
| - name: Checkout branch | |
| uses: actions/checkout@v2 | |
| - name: Install Conda | |
| uses: conda-incubator/setup-miniconda@v2 | |
| with: | |
| activate-environment: test | |
| auto-update-conda: false | |
| auto-activate-base: false | |
| python-version: ${{ matrix.PYTHON_VERSION }} | |
| use-only-tar-bz2: true | |
| channels: conda-forge,defaults | |
| miniconda-version: "latest" | |
| - name: Install package dependencies | |
| shell: bash -l {0} | |
| run: conda install --file requirements/conda.txt -y -q -c conda-forge | |
| - name: Install test dependencies | |
| shell: bash -l {0} | |
| run: | | |
| conda install nomkl -y -q | |
| conda install -c spyder-ide --file requirements/tests.txt -y -q | |
| - name: Install Package | |
| shell: bash -l {0} | |
| run: pip install --no-deps -e . | |
| - name: Show environment information | |
| shell: bash -l {0} | |
| run: | | |
| conda info | |
| conda list | |
| - name: Run tests | |
| shell: bash -l {0} | |
| run: python runtests.py | |
| timeout-minutes: 10 |