Skip to content

Commit c587f9c

Browse files
committed
Ue new venv dir for CLI tests
The new skeleton now use venv and not tmp Signed-off-by: Philippe Ombredanne <pombredanne@nexb.com>
1 parent 6b71c99 commit c587f9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_extractcode_cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def run_extract(options, expected_rc=None, cwd=None):
3434
bin_dir = 'Scripts' if on_windows else 'bin'
3535
# note: this assumes that we are using a standard directory layout as set
3636
# with the configure script
37-
cmd_loc = os.path.join(project_root, 'tmp', bin_dir, 'extractcode')
37+
cmd_loc = os.path.join(project_root, 'venv', bin_dir, 'extractcode')
3838
assert os.path.exists(cmd_loc + ('.exe' if on_windows else ''))
3939
args = [cmd_loc] + options
4040
result = subprocess.run(args,

0 commit comments

Comments
 (0)