2019-03-25 11:25:41 -04:00

26 lines
756 B
INI

# 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 = py37
[testenv]
commands =
pip install -e .[dev]
python setup.py test
[testenv:run_tests_against_test_deployment]
commands =
# install dependencies from real PyPI
pip install eth-account eth-keys hexbytes hypothesis>=3.31.2 mypy_extensions
# install package-under-test from test PyPI
pip install --index-url https://test.pypi.org/legacy/ 0x-middlewares
pytest test
[testenv:run_tests_against_deployment]
commands =
pip install 0x-middlewares
pytest test