From 5f82b8020159baa978399fc58e24484669edf295 Mon Sep 17 00:00:00 2001 From: JensDiemer Date: Sat, 2 Apr 2022 20:16:28 +0200 Subject: [PATCH] update test --- .github/workflows/pytest.yml | 9 ++------- pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 636c8af..7d336a3 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -14,7 +14,7 @@ jobs: strategy: max-parallel: 2 matrix: - python-version: [3.9, 3.8, 3.7] + python-version: ["3.10", "3.9", "3.8", "3.7"] steps: - uses: actions/checkout@v2 with: @@ -23,7 +23,7 @@ jobs: run: | git fetch origin master - name: 'Set up Python ${{ matrix.python-version }}' - uses: actions/setup-python@v1 + uses: actions/setup-python@v2 with: python-version: '${{ matrix.python-version }}' @@ -42,8 +42,3 @@ jobs: - name: 'Upload coverage report' run: bash <(curl -s https://codecov.io/bash) - - - name: 'Run linters' - if: matrix.python-version == '3.8' - run: | - make lint diff --git a/pyproject.toml b/pyproject.toml index dc7ffbc..06d3521 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -101,7 +101,7 @@ addopts = """ legacy_tox_ini = """ [tox] isolated_build = True -envlist = px310,py39,py38 +envlist = px310,py39,py38,py37 skip_missing_interpreters = True [testenv]