Implement function (and remove distutils dependency) #1387
Workflow file for this run
This file contains 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: test | |
on: [push, pull_request] | |
jobs: | |
test_with_python36: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-20.04, macos-latest, windows-latest] | |
python-version: ["3.6"] | |
steps: | |
- uses: actions/[email protected] | |
- name: Set up Python${{ matrix.python-version }} | |
uses: actions/[email protected] | |
with: | |
python-version: ${{ matrix.python-version }} | |
architecture: x64 | |
- name: Install Dependencies for Python${{ matrix.python-version }} | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install tox | |
- name: Test with pytest for Python${{ matrix.python-version }} | |
run: | | |
tox -e ${{ matrix.python-version }} | |
test_other_python: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
python-version: ["3.7", "3.8", "3.9", "3.10"] | |
steps: | |
- uses: actions/[email protected] | |
- name: Set up Python${{ matrix.python-version }} | |
uses: actions/[email protected] | |
with: | |
python-version: ${{ matrix.python-version }} | |
architecture: x64 | |
- name: Install Dependencies for Python${{ matrix.python-version }} | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install tox | |
- name: Test with pytest for Python${{ matrix.python-version }} | |
run: | | |
tox -e ${{ matrix.python-version }} | |
coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Set up Python${{ matrix.python-version }} | |
uses: actions/[email protected] | |
with: | |
python-version: ${{ matrix.python-version }} | |
architecture: x64 | |
- name: Install Dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install .[test] | |
- name: Generate coverage report | |
run: | | |
python -m pytest --cov=./ --cov-report=xml | |
- name: Upload coverage to Codecov | |
uses: codecov/[email protected] | |
with: | |
token: ${{secrets.CODECOV_TOKEN }} |