Changes in tests/pybin/settings.py [a8d4b59:dcfedca]
- File:
-
- 1 edited
-
tests/pybin/settings.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tests/pybin/settings.py
ra8d4b59 rdcfedca 4 4 from . import tools 5 5 6 global original_path 7 6 8 try : 9 original_path = os.getcwd() 7 10 testpath = os.path.dirname(os.path.abspath(os.path.join(os.getcwd(), sys.argv[0]))) 8 11 sys.path.append(testpath) … … 113 116 global timeout 114 117 global output_width 118 global archive 115 119 116 120 dry_run = options.dry_run … … 122 126 timeout = Timeouts(options.timeout, options.global_timeout) 123 127 output_width = 24 128 archive = os.path.abspath(os.path.join(original_path, options.archive_errors)) if options.archive_errors else None 124 129 125 130
Note:
See TracChangeset
for help on using the changeset viewer.