# HG changeset patch # User Augie Fackler # Date 1479768699 18000 # Node ID d2c40510104ebcac5c838abee7b74c1552cab902 # Parent 8a9681b963a31fdc1766dccff799e556ee41a78c tests: update sitecustomize to use uuid1() instead of randrange() The comments mention that uuid would be better, so let's go ahead and make good on an old idea. diff -r 8a9681b963a3 -r d2c40510104e tests/sitecustomize.py --- a/tests/sitecustomize.py Mon Nov 21 17:48:13 2016 -0500 +++ b/tests/sitecustomize.py Mon Nov 21 17:51:39 2016 -0500 @@ -4,11 +4,10 @@ if os.environ.get('COVERAGE_PROCESS_START'): try: import coverage - import random + import uuid - # uuid is better, but not available in Python 2.4. covpath = os.path.join(os.environ['COVERAGE_DIR'], - 'cov.%s' % random.randrange(0, 1000000000000)) + 'cov.%s' % uuid.uuid1()) cov = coverage.coverage(data_file=covpath, auto_data=True) cov._warn_no_data = False cov._warn_unimported_source = False