- Timestamp:
- 06/09/18 15:50:46 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tester/globals.py
r798 r806 13 13 try: 14 14 from colorama import init, Fore, Style # Fore and Style are here just to get ansi codes to control color and brightness 15 # print repr(Fore.GREEN)16 # print repr(Fore.RED)17 # print repr(Fore.RESET)18 # print repr(Style.BRIGHT)19 15 except ImportError: 20 16 print("The colorama module not available - there will be no ansi stdout colors") 21 17 ANSI_SETGREEN = ANSI_SETRED = ANSI_RESET = '' 22 18 else: 23 init() 19 init() # from colorama 20 # print repr(Fore.GREEN) # print sample ansi codes (just for debugging/curiosity) 21 # print repr(Fore.RED) 22 # print repr(Fore.RESET) 23 # print repr(Style.BRIGHT) 24 24 25 25 … … 35 35 # no longer assuming any specific directory layout, use -tp/-wp/-fp to configure as needed 36 36 THISDIR = "." # -tp 37 EXEDIR = "." 38 FILESDIR = "." # -fp37 EXEDIR = "." # -wp 38 FILESDIR = "." # -fp 39 39 40 40 # special ways of comparison, to be used in 'out' lines … … 53 53 # You could also set -Ddata to activate the mode with no splitfilesys. 54 54 EXENAMES = {"default": ["frams.exe", "-ddata", "-Demptydata", "-Q", "-s"], 55 "t eatr": ["theater.exe", "-ddata", "-Demptydata", "-Q", "st"]}55 "theater": ["theater.exe", "-ddata", "-Demptydata", "-Q", "st"]} 56 56 57 57 EXERULES = []
Note: See TracChangeset
for help on using the changeset viewer.