Changes between Version 9 and Version 10 of Python3


Ignore:
Timestamp:
2020-07-21T10:49:17Z (4 years ago)
Author:
chadwhitacre
Comment:

Specify full test for dev env (switch to list)

Legend:

Unmodified
Added
Removed
Modified
  • Python3

    v9 v10  
    99== How to set up your development environment ==
    1010
    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.
     11We use [https://tox.readthedocs.io/en/latest/ tox] to standardize environments across developers and CI.
     12
     131. Install tox (globally, probably).
     142. In your Tahoe-LAFS working copy, run `tox -e py36 --notest` to bootstrap the `py36` virtualenv.
     153. Activate the environment with `source .tox/py36/bin/activate` or equivalent and run `trial allmydata.test.test_python3` as a smoke test.
     164. `deactivate` the virtualenv (or switch shells) and run `tox -e py36` to exercise the whole suite.
    1217
    1318== How to choose a module to port ==