Changeset d91516a5 in trunk


Ignore:
Timestamp:
2017-08-10T19:51:12Z (8 years ago)
Author:
Brian Warner <warner@…>
Branches:
master
Children:
27348be, 3afa38a
Parents:
3f2f7df (diff), aaf167b (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge PR421

closes tahoe-lafs/tahoe-lafs#421
refs ticket:2729

Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified tox.ini

    r3f2f7df rd91516a5  
    103103commands =
    104104         sphinx-build -b html -d {toxinidir}/docs/_build/doctrees {toxinidir}/docs {toxinidir}/docs/_build/html
     105
     106[testenv:pyinstaller]
     107basepython=python2.7
     108# Do not use the '--editable' flag for this testenv as the 'pyinstaller.spec'
     109# script called below will need patch the source tree at build-time in order
     110# to remove the setuptools requirement from '_auto_deps.py' (and we want to
     111# avoid race-conditions when running tests in parallel, e.g., with "detox").
     112deps =
     113    .
     114    pyinstaller
     115# Setting PYTHONHASHSEED to a known value assists with reproducible builds.
     116# See https://pyinstaller.readthedocs.io/en/stable/advanced-topics.html#creating-a-reproducible-build
     117setenv=PYTHONHASHSEED=1
     118commands=pyinstaller -y --clean pyinstaller.spec
Note: See TracChangeset for help on using the changeset viewer.