Changes between Version 8 and Version 9 of Python3


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

Add section about setting up dev env

Legend:

Unmodified
Added
Removed
Modified
  • Python3

    v8 v9  
    66* Reduce errors by relying on Python 2 behavior and tests as well as manual review.
    77* Try to reduce grunt work.
     8
     9== How to set up your development environment ==
     10
     11We 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.
    812
    913== How to choose a module to port ==