File: tox.ini

package info (click to toggle)
flask-migrate 4.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 368 kB
  • sloc: python: 1,228; makefile: 31; sh: 16
file content (35 lines) | stat: -rw-r--r-- 541 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[tox]
envlist=flake8,py37,py38,py39,py310,py311,pypy3,docs
skip_missing_interpreters=True

[gh-actions]
python =
    3.7: py37
    3.8: py38
    3.9: py39
    3.10: py310
    3.11: py311
    pypy-3: pypy3

[testenv]
commands=
    pip install -e .
    pip install {env:SQLALCHEMY_VERSION:sqlalchemy>=2}
    pytest -p no:logging
deps=
    pytest

[testenv:flake8]
deps=
    flake8
commands=
    flake8 --exclude=".*" src/flask_migrate tests

[testenv:docs]
changedir=docs
deps=
    sphinx
allowlist_externals=
    make
commands=
    make html