11 | | We use [https://tox.readthedocs.io/en/latest/ tox] to standardize environments across developers and CI. So first install tox (globally, probably) and then in your Tahoe-LAFS working copy run `tox -e py36 --notest` to bootstrap the `py36` virtualenv. Then activate the environment with `source .tox/py36/bin/activate` or equivalent and run `trial allmydata.test.test_python3` as a smoke test. |
| 11 | We use [https://tox.readthedocs.io/en/latest/ tox] to standardize environments across developers and CI. |
| 12 | |
| 13 | 1. Install tox (globally, probably). |
| 14 | 2. In your Tahoe-LAFS working copy, run `tox -e py36 --notest` to bootstrap the `py36` virtualenv. |
| 15 | 3. Activate the environment with `source .tox/py36/bin/activate` or equivalent and run `trial allmydata.test.test_python3` as a smoke test. |
| 16 | 4. `deactivate` the virtualenv (or switch shells) and run `tox -e py36` to exercise the whole suite. |