Skip to content

Commit

Permalink
Use same Python executable throughout test script
Browse files Browse the repository at this point in the history
  • Loading branch information
myint committed Jul 25, 2016
1 parent 07fae0a commit 1ff40b8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test_acid.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@


ROOT_PATH = os.path.abspath(os.path.dirname(__file__))
AUTOFLAKE_BIN = os.path.join(ROOT_PATH, 'autoflake.py')
AUTOFLAKE_BIN = "'{}' '{}'".format(sys.executable,
os.path.join(ROOT_PATH, 'autoflake.py'))

import autoflake

Expand Down

0 comments on commit 1ff40b8

Please sign in to comment.