this is now the mypy target that the jenkins gerrit
job will access.
Change-Id: Iaa2bdbe8c4da683d7704a50be8ff3d9e7f887e09
- name: Run tests
run: tox -e py-${{ matrix.sqlalchemy }}
- run-mypy:
- name: mypy-${{ matrix.python-version }}-${{ matrix.os }}
+ run-pep484:
+ name: pep484-${{ matrix.python-version }}-${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
pip install --upgrade tox setuptools
pip list
- - name: Run mypy
- run: tox -e mypy
+ - name: Run pep484
+ run: tox -e pep484
- name: Run tests
run: tox -e py-${{ matrix.sqlalchemy }}
- run-mypy:
- name: mypy-${{ matrix.python-version }}-${{ matrix.os }}
+ run-pep484:
+ name: pep484-${{ matrix.python-version }}-${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
pip install --upgrade tox setuptools
pip list
- - name: Run mypy
- run: tox -e mypy
+ - name: Run tox pep484
+ run: tox -e pep484
{oracle,mssql}: python reap_dbs.py db_idents.txt
-[testenv:mypy]
+[testenv:pep484]
basepython = python3
deps=
mypy
pytest
commands = mypy ./alembic/ --exclude alembic/templates
+[testenv:mypy]
+basepython = {[testenv:pep484]basepython}
+deps=
+ {[testenv:pep484]deps}
+commands = {[testenv:pep484]commands}
+
[testenv:pep8]
basepython = python3
deps=