* Remove pre-release suffixes from version numbers
* For wrapper test, pull latest ganache image first
* For wrapper test, unpin ganache, use beta snapshot
* In docs, advise using beta ganache snapshot
Because we haven't yet published the non-beta snapshot
* Unpin package interdependencies
* unpin tests from beta 0xorg/ganache-cli version
* use beta ganache snapshot
* Set release date in CHANGELOGs
* In testing deployment, stop testing pre-releases
* Include rmtree("build") in all clean commands
* Fix clean not cleaning what it thought it was
* In monorepo script, install pkgs 1st then dev deps
* Stop pinning ganache snapshot version
* In test setup, wait longer for mesh to start up
* Fix broken hyperlinks in docs
* fix missing \n that was breaking doc rendering
* In monorepo script comment, fix typo, and clarify
25 lines
578 B
INI
25 lines
578 B
INI
[tox]
|
|
envlist = py3
|
|
|
|
[testenv]
|
|
deps=-r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
|
|
commands=
|
|
nosetests \
|
|
[]
|
|
|
|
[testenv:run_tests_against_test_deployment]
|
|
commands =
|
|
# install dependencies from real PyPI
|
|
pip install mypy_extensions pytest
|
|
# install package-under-test from test PyPI
|
|
pip install --index-url https://test.pypi.org/legacy/ 0x-sra-client
|
|
pytest test
|
|
|
|
[testenv:run_tests_against_deployment]
|
|
setenv = PY_IGNORE_IMPORTMISMATCH = 1
|
|
commands =
|
|
pip install 0x-sra-client[dev]
|
|
pytest --doctest-modules src test
|