Fix overlooked os.path.abspath

This commit is contained in:
Yannick Jadoul
2020-06-18 00:23:25 +02:00
parent b3ffb04a2c
commit e58aed1731
+1 -1
View File
@@ -249,7 +249,7 @@ def build(options: BuildOptions) -> None:
test_command_prepared = prepare_command(
options.test_command,
project=Path('.').resolve(),
package=options.package_dir
package=options.package_dir.resolve()
)
call(test_command_prepared, cwd=os.environ['HOME'], env=virtualenv_env, shell=True)