##// END OF EJS Templates
Remove iptest and other Nose-dependent code
Remove iptest and other Nose-dependent code

File last commit:

r27042:360df2b6
r27042:360df2b6
Show More
test.yml
47 lines | 1.3 KiB | text/x-yaml | YamlLexer
name: Run tests
on:
push:
pull_request:
# Run weekly on Monday at 1:23 UTC
schedule:
- cron: '23 1 * * 1'
workflow_dispatch:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
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"
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: |
python -m pip install --upgrade pip setuptools wheel
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-cov pytest-trio 'matplotlib!=3.2.0' pandas
python -m pip install --upgrade check-manifest pytest-cov anyio
- name: Check manifest
run: check-manifest
- name: pytest
env:
COLUMNS: 120
run: |
pytest --color=yes -v --cov --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2