Codebase list python-graphene-sqlalchemy / 3c86b8bb-f7c0-424f-a101-be1a280e07f8/main tox.ini
3c86b8bb-f7c0-424f-a101-be1a280e07f8/main

Tree @3c86b8bb-f7c0-424f-a101-be1a280e07f8/main (Download .tar.gz)

tox.ini @3c86b8bb-f7c0-424f-a101-be1a280e07f8/mainraw · history · blame

[tox]
envlist = pre-commit,py{27,34,35,36,37}-sql{11,12,13}
skipsdist = true
minversion = 3.7.0

[testenv]
deps =
    .[test]
    sql11: sqlalchemy>=1.1,<1.2
    sql12: sqlalchemy>=1.2,<1.3
    sql13: sqlalchemy>=1.3,<1.4
commands =
    pytest graphene_sqlalchemy --cov=graphene_sqlalchemy {posargs}

[testenv:pre-commit]
basepython=python3.7
deps =
    .[dev]
commands =
    pre-commit {posargs:run --all-files}