Skip to content

Commit

Permalink
Merge pull request qtumproject#575 from qtumproject/djaen/fix-test-en…
Browse files Browse the repository at this point in the history
…vironment-variables

Fix for test environment variables
  • Loading branch information
qtum-neil authored Jun 19, 2018
2 parents 78b70f1 + f3a2524 commit 24e1eb6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/functional/test_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -319,8 +319,8 @@ def run_tests(test_list, src_dir, build_dir, exeext, tmpdir, jobs=1, enable_cove

#Set env vars
if "BITCOIND" not in os.environ:
os.environ["BITCOIND"] = build_dir + '/src/bitcoind' + exeext
os.environ["BITCOINCLI"] = build_dir + '/src/bitcoin-cli' + exeext
os.environ["BITCOIND"] = build_dir + '/src/qtumd' + exeext
os.environ["BITCOINCLI"] = build_dir + '/src/qtum-cli' + exeext

tests_dir = src_dir + '/test/functional/'

Expand Down

0 comments on commit 24e1eb6

Please sign in to comment.