diff options
| author | Chun Kuan Lee <[email protected]> | 2018-09-30 14:36:12 +0800 |
|---|---|---|
| committer | Chun Kuan Lee <[email protected]> | 2019-02-12 05:17:15 +0800 |
| commit | ae892adceb0ad41bf3edfcebc6537c11d492127c (patch) | |
| tree | 23dea7cf0291c58f28fa00f7e57fb1443aa68fd2 | |
| parent | Merge #15226: Allow creating blank (empty) wallets (alternative) (diff) | |
| download | discoin-ae892adceb0ad41bf3edfcebc6537c11d492127c.tar.xz discoin-ae892adceb0ad41bf3edfcebc6537c11d492127c.zip | |
tests: accept unicode characters on Windows
| -rwxr-xr-x | test/functional/test_runner.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/test/functional/test_runner.py b/test/functional/test_runner.py index d8f92e260..999cd7210 100755 --- a/test/functional/test_runner.py +++ b/test/functional/test_runner.py @@ -250,10 +250,6 @@ def main(): # Create base test directory tmpdir = "%s/test_runner_₿_🏃_%s" % (args.tmpdirprefix, datetime.datetime.now().strftime("%Y%m%d_%H%M%S")) - # If we fixed the command-line and filename encoding issue on Windows, these two lines could be removed - if config["environment"]["EXEEXT"] == ".exe": - tmpdir = "%s/test_runner_%s" % (args.tmpdirprefix, datetime.datetime.now().strftime("%Y%m%d_%H%M%S")) - os.makedirs(tmpdir) logging.debug("Temporary test directory at %s" % tmpdir) |