##// END OF EJS Templates
Partly revert "remove now-obsolete use of skip_doctest outside core"...
Partly revert "remove now-obsolete use of skip_doctest outside core" This partly reverts commit 02234da0d461f5ddee142d51952dc10a86b8074e. test_decorators.py is intended to test skip_doctest, the removing was wrong.

File last commit:

r26858:e6aab7f5 merge
r26938:fda2ebea
Show More
test.yml
50 lines | 1.4 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:
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:
Matthew Feickert
ci: Add testing for macOS on ends
r26841 os: [ubuntu-latest]
python-version: ["3.7", "3.8", "3.9"]
# Test all on ubuntu, test ends on macos
include:
- os: macos-latest
python-version: "3.7"
- os: macos-latest
python-version: "3.9"
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 }}
- name: Install and update Python dependencies
run: |
Thomas Kluyver
Also install wheel package
r26442 python -m pip install --upgrade pip setuptools wheel
Blazej Michalik
Add GHA tests
r26431 python -m pip install --upgrade -e file://$PWD#egg=ipython[test]
python -m pip install --upgrade --upgrade-strategy eager trio curio
python -m pip install --upgrade pytest pytest-trio 'matplotlib!=3.2.0'
Thomas Kluyver
Add codecov upload
r26441 python -m pip install --upgrade check-manifest pytest-cov anyio
Thomas Kluyver
Add check-manifest command as part of tests job
r26440 - name: Check manifest
run: check-manifest
Blazej Michalik
Add GHA tests
r26431 - name: iptest
run: |
cd /tmp && iptest --coverage xml && cd -
Thomas Kluyver
Add codecov upload
r26441 cp /tmp/ipy_coverage.xml ./
cp /tmp/.coverage ./
Blazej Michalik
Add GHA tests
r26431 - name: pytest
run: |
Matthias Bussonnier
Try to fix some of current failures....
r26854 pytest -v
Thomas Kluyver
Name codecov step
r26443 - name: Upload coverage to Codecov
Thomas Kluyver
Use codecov Github action v2
r26851 uses: codecov/codecov-action@v2