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 wire up for local dev with `pip install -e .` |
16 | | 4. Run `trial allmydata.test.test_python3` as a smoke test. |
17 | | 5. `deactivate` the virtualenv (or switch shells) and run `tox -e py36` to exercise the whole suite. |
| 14 | 1. In your Tahoe-LAFS working copy, run `tox -e py36 --notest` to bootstrap the `py36` virtualenv. |
| 15 | 1. Activate the environment with `source .tox/py36/bin/activate` or equivalent. |
| 16 | 1. Wire up for local dev with `pip install -e .` |
| 17 | 1. Run `trial allmydata.test.test_python3` as a smoke test. |
| 18 | 1. Options for exercising the whole suite of ported tests (NB: `test_python3` != `python3_tests`): |
| 19 | 1. `trial allmydata.test.python3_tests` |
| 20 | 1. `python -m allmydata.test.python3_tests` |
| 21 | 1. `deactivate` the virtualenv (or switch shells) and run `tox -e py36` |