Refactor to a format_n() function for nice log messages (#944)
#1308
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 workflow installs the package on several OS & Python versions and runs the tests | |
| # For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
| name: pytest | |
| on: | |
| push: | |
| branches: [ 'main' ] | |
| pull_request: | |
| branches: [ '**' ] | |
| jobs: | |
| pytest: | |
| strategy: | |
| matrix: | |
| os: | |
| - ubuntu-latest | |
| - windows-latest | |
| - macos-latest | |
| python-version: | |
| - '3.10' | |
| - '3.11' | |
| - '3.12' | |
| - '3.13' | |
| fail-fast: false | |
| defaults: | |
| run: | |
| shell: bash | |
| runs-on: ${{ matrix.os }} | |
| name: ${{ matrix.os }} py${{ matrix.python-version }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| id: setup-python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| #------------------------------ | |
| # install & configure poetry | |
| #------------------------------ | |
| - name: Install Poetry | |
| uses: snok/install-poetry@v1 | |
| with: | |
| version: 2.1.2 | |
| virtualenvs-create: true | |
| virtualenvs-in-project: true | |
| installer-parallel: true | |
| #------------------------------------ | |
| # load cached venv if cache exists | |
| #------------------------------------ | |
| - name: Load cached venv | |
| id: cached-poetry-dependencies | |
| uses: actions/cache@v4 | |
| with: | |
| path: .venv | |
| key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }} | |
| #------------------------ | |
| # install your project | |
| #------------------------ | |
| - name: Install library | |
| run: | | |
| poetry self add "poetry-dynamic-versioning[plugin]" && | |
| poetry install --no-interaction --with calamine,dev,optional_io_formats,optional_plotting,tutorials,wbdata | |
| # run tests without Matplotlib & CodeCode tests on earlier Python versions | |
| - name: Test with pytest | |
| if: ${{ matrix.python-version != '3.13' }} | |
| run: poetry run pytest tests | |
| # run tests with Matplotlib only on latest Python version | |
| - name: Test with pytest including Matplotlib & Codecov | |
| if: ${{ matrix.python-version == '3.13' }} | |
| run: poetry run pytest tests --mpl --cov=./ --cov-report=xml | |
| - name: Upload coverage report to Codecov | |
| if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == '3.13' }} | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} |