* Use pre-release ver's for tests against deployment * Pre-release version number bumps * pin sra_client dev deps to prereleases for testing against deployed package * middlewares: incl doctest in tests of deployment * Unpin mesh, use new snapshot, & pay protocol fees * .gitignore gen'd wrappers for new contracts * test build_tx() & support for empty TxParams.from_ * fix doc: fill TAKERAssetAmount, not maker...
19 lines
511 B
INI
19 lines
511 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_deployment]
|
|
setenv = PY_IGNORE_IMPORTMISMATCH = 1
|
|
commands=
|
|
pip install --pre 0x-contract-artifacts[dev]
|
|
pytest --doctest-modules src
|