Files
Gymnasium/tox.ini
pzhokhov 07e0c98f8e python27 tests (#1314)
* add py27 test environment (sans box2d and atari)

* skip mujoco tests if mujoco_py not present

* re-enable python3 tests

* remove unicode symbols

* remove more unicode symbols
2019-02-08 11:46:51 -08:00

26 lines
579 B
INI

# Tox (http://tox.testrun.org/) 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 = py27, py3
[testenv:py3]
passenv=DISPLAY MUJOCO_KEY LD_LIBRARY_PATH TRAVIS*
deps =
pytest
pytest-forked
-e .[all]
commands =
pytest --forked {posargs}
[testenv:py27]
passenv=DISPLAY MUJOCO_KEY LD_LIBRARY_PATH TRAVIS*
deps =
pytest
pytest-forked
-e .
commands =
pytest --forked {posargs}