1[tox]
2envlist = {py36,py37,py38,py39,pypy3},lint
3
4[testenv]
5commands =
6    python -m pytest {posargs}
7deps =
8    PyMongo>3.9.0
9    pytest
10    pytest-cov
11
12[testenv:lint]
13deps =
14    pre-commit
15commands =
16    python -m pre_commit run {posargs:--all}
17