diff options
-rw-r--r-- | .github/workflows/pylint.yml | 2 | ||||
-rw-r--r-- | .github/workflows/pypy.yml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index c922293b..a614cad4 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -16,7 +16,7 @@ jobs: strategy: max-parallel: 4 matrix: - python-version: [pypy3, 3.6, 3.7, 3.8, 3.9] + python-version: [3.6, 3.7, 3.8, 3.9] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} diff --git a/.github/workflows/pypy.yml b/.github/workflows/pypy.yml index 788f4cb0..0fa60042 100644 --- a/.github/workflows/pypy.yml +++ b/.github/workflows/pypy.yml @@ -31,4 +31,4 @@ jobs: pip install -r requirements.txt - name: Pypy flake8 and test run: | - make test_flake8 test_pytest test_doctest test_other + make test_pylint test_flake8 test_pytest test_doctest test_other |