diff options
author | MarcoFalke <falke.marco@gmail.com> | 2018-05-08 12:56:13 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2018-05-08 13:07:31 -0400 |
commit | fac1e1f3b2d256d7c29b6ba06ae2acc0fbcdf0c2 (patch) | |
tree | 0ead07229f3a9a030e251ca527df89dfd105e6af /test/functional/test_runner.py | |
parent | 66cc47be982aa431b72494f5d655c20eea17a0f5 (diff) |
qa: Remove unused option --srcdir
Diffstat (limited to 'test/functional/test_runner.py')
-rwxr-xr-x | test/functional/test_runner.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/functional/test_runner.py b/test/functional/test_runner.py index ff4b480165..dad2ad8cda 100755 --- a/test/functional/test_runner.py +++ b/test/functional/test_runner.py @@ -313,8 +313,7 @@ def run_tests(test_list, src_dir, build_dir, tmpdir, jobs=1, enable_coverage=Fal tests_dir = src_dir + '/test/functional/' - flags = ["--srcdir={}/src".format(build_dir)] + args - flags.append("--cachedir=%s" % cache_dir) + flags = ['--cachedir={}'.format(cache_dir)] + args if enable_coverage: coverage = RPCCoverage() |