File: tox.ini

package info (click to toggle)
flask-mongoengine 1.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid
  • size: 508 kB
  • sloc: python: 2,127; makefile: 109
file content (16 lines) | stat: -rw-r--r-- 247 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[tox]
envlist = {py36,py37,py38,py39,pypy3},lint

[testenv]
commands =
    python -m pytest {posargs}
deps =
    PyMongo>3.9.0
    pytest
    pytest-cov

[testenv:lint]
deps =
    pre-commit
commands =
    python -m pre_commit run {posargs:--all}