##// END OF EJS Templates
Merge pull request #13658 from Carreau/mdf...
Merge pull request #13658 from Carreau/mdf misc doc fixes

File last commit:

r27440:ab713d7b merge
r27643:c97f6d2e merge
Show More
test.yml
80 lines | 2.5 KiB | text/x-yaml | YamlLexer
Blazej Michalik
Add GHA tests
r26431 name: Run tests
Matthew Feickert
ci: Add schedule and workflow_dispatch support
r26840 on:
push:
Matthias Bussonnier
Narrow down test running on branches....
r27426 branches:
- main
- master
- '*.x'
Matthew Feickert
ci: Add schedule and workflow_dispatch support
r26840 pull_request:
# Run weekly on Monday at 1:23 UTC
schedule:
- cron: '23 1 * * 1'
workflow_dispatch:
Blazej Michalik
Add GHA tests
r26431
jobs:
test:
Matthew Feickert
ci: Add testing for macOS on ends
r26841 runs-on: ${{ matrix.os }}
Blazej Michalik
Add GHA tests
r26431 strategy:
matrix:
Nikita Kniazev
Move most of Windows test runners to GitHub Actions...
r27125 os: [ubuntu-latest, windows-latest]
Matthias Bussonnier
Stop support for 3.7 on the master branch....
r27132 python-version: ["3.8", "3.9", "3.10"]
Nikita Kniazev
Move optional dependencies to a separate set
r27104 deps: [test_extra]
Matthew Feickert
ci: Add testing for macOS on ends
r26841 # Test all on ubuntu, test ends on macos
include:
- os: macos-latest
Matthias Bussonnier
Stop support for 3.7 on the master branch....
r27132 python-version: "3.8"
Nikita Kniazev
Move optional dependencies to a separate set
r27104 deps: test_extra
Matthew Feickert
ci: Add testing for macOS on ends
r26841 - os: macos-latest
Nikita Kniazev
Add Python 3.10 CI runners
r27062 python-version: "3.10"
Nikita Kniazev
Move optional dependencies to a separate set
r27104 deps: test_extra
# Tests minimal dependencies set
- os: ubuntu-latest
python-version: "3.10"
deps: test
Nikita Kniazev
Python 3.11 fixes
r27105 # Tests latest development Python version
- os: ubuntu-latest
python-version: "3.11-dev"
deps: test
Nikita Kniazev
Tweak tests for PyPy and add CI runner...
r27235 # Installing optional dependencies stuff takes ages on PyPy
- os: ubuntu-latest
python-version: "pypy-3.8"
deps: test
- os: windows-latest
python-version: "pypy-3.8"
deps: test
- os: macos-latest
python-version: "pypy-3.8"
deps: test
Blazej Michalik
Add GHA tests
r26431
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
Matthias Bussonnier
setup pip cache
r27270 cache: pip
Nikita Kniazev
CI: Install texlive to run latex tests
r27085 - name: Install latex
Nikita Kniazev
Move optional dependencies to a separate set
r27104 if: runner.os == 'Linux' && matrix.deps == 'test_extra'
Matthias Bussonnier
disable latex
r27416 run: echo "disable latex for now, issues in mirros" #sudo apt-get -yq -o Acquire::Retries=3 --no-install-suggests --no-install-recommends install texlive dvipng
Blazej Michalik
Add GHA tests
r26431 - name: Install and update Python dependencies
run: |
Matthias Bussonnier
try to build with python -m build
r27269 python -m pip install --upgrade pip setuptools wheel build
Nikita Kniazev
Move optional dependencies to a separate set
r27104 python -m pip install --upgrade -e .[${{ matrix.deps }}]
python -m pip install --upgrade check-manifest pytest-cov
Matthias Bussonnier
try to build with python -m build
r27269 - name: Try building with Python build
if: runner.os != 'Windows' # setup.py does not support sdist on Windows
run: |
python -m build
shasum -a 256 dist/*
Thomas Kluyver
Add check-manifest command as part of tests job
r26440 - name: Check manifest
Nikita Kniazev
Move most of Windows test runners to GitHub Actions...
r27125 if: runner.os != 'Windows' # setup.py does not support sdist on Windows
Thomas Kluyver
Add check-manifest command as part of tests job
r26440 run: check-manifest
Blazej Michalik
Add GHA tests
r26431 - name: pytest
Nikita Kniazev
CI: Colorize and widen Pytest summary...
r26992 env:
COLUMNS: 120
Blazej Michalik
Add GHA tests
r26431 run: |
Nikita Kniazev
Disable coverage collection on PyPy...
r27333 pytest --color=yes -raXxs ${{ startsWith(matrix.python-version, 'pypy') && ' ' || '--cov --cov-report=xml' }}
Thomas Kluyver
Name codecov step
r26443 - name: Upload coverage to Codecov
Thomas Kluyver
Use codecov Github action v2
r26851 uses: codecov/codecov-action@v2