| # tox (https://tox.readthedocs.io/) is a tool for running tests | |
| # in multiple virtualenvs. This configuration file will run the | |
| # test suite on all supported python versions. To use it, "pip install tox" | |
| # and then run "tox" from this directory. | |
| [tox] | |
| envlist = py36, py37, py38, py39, py310, py311 | |
| [testenv] | |
| deps = | |
| py{3,36,37,38,39,310,311}: -rrequirements-dev.txt | |
| commands = | |
| pytest airavata_django_portal_sdk/ | |
| # see https://github.com/pytest-dev/pytest/issues/2042 | |
| setenv = | |
| PY_IGNORE_IMPORTMISMATCH = 1 |