1[tox]
2envlist = py37,py38,py39,py310,py311,pypy3
3
4[testenv]
5deps =
6    -rrequirements.txt
7    -rextra_requirements.txt
8passenv = HOME,USERPROFILE
9commands=
10    python -m pyfakefs.tests.all_tests
11    python -m pyfakefs.tests.all_tests_without_extra_packages
12    python -m pytest pyfakefs/pytest_tests/pytest_plugin_test.py
13