Tests #246
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: Tests | |
| on: | |
| schedule: | |
| - cron: '0 9 * * 1' # run every Monday at 9 AM UTC (3 am PST) | |
| push: | |
| pull_request: | |
| jobs: | |
| build: | |
| name: ${{ matrix.python-version }}, ${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ ubuntu-latest, macos-latest, windows-latest ] | |
| python-version: ['3.11'] | |
| steps: | |
| - name: Checkout source | |
| uses: actions/checkout@v6 | |
| with: | |
| persist-credentials: false | |
| - name: Cache Miniconda | |
| uses: actions/cache@v5 | |
| env: | |
| # Increase this value to reset cache if environment.yml has changed | |
| CACHE_NUMBER: 0 | |
| with: | |
| path: ~/conda_pkgs_dir | |
| key: ${{ runner.os }}-${{ matrix.python-version }}-${{ | |
| matrix.run-type }}-${{ env.CACHE_NUMBER }}-${{ | |
| hashFiles('ci/test_environment.yaml') }} | |
| - name: Setup conda environment | |
| uses: conda-incubator/setup-miniconda@v3 | |
| with: | |
| auto-update-conda: true | |
| activate-environment: pycap_ci | |
| environment-file: ci/test_environment.yaml | |
| python-version: ${{ matrix.python-version }} | |
| #condarc-file: ci/example-condarc.yml | |
| auto-activate-base: false | |
| use-only-tar-bz2: true # IMPORTANT: This needs to be set for caching to work properly! | |
| - name: Conda info | |
| shell: bash -l {0} | |
| run: conda info | |
| - name: Conda list | |
| shell: bash -l {0} | |
| run: conda list | |
| #- name: Lint with flake8 | |
| # run: | | |
| # # stop the build if there are Python syntax errors or undefined names | |
| # flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics | |
| # # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide | |
| # flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics | |
| - name: Run tests | |
| shell: bash -l {0} | |
| run: | | |
| coverage run -m pytest -v --durations=20 | |
| coverage report -m | |