Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vurusovs committed Oct 14, 2020
1 parent 9b9fca8 commit c39eb8e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/time_tests/test_runner/test_timetest.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,9 @@ def test_timetest(instance, executable, niter, cl_cache_dir, test_info, tmpdir):
model_path = Path(expand_env_vars(model_path))

# Copy model to a local temporary directory
shutil.copytree(model_path.parent, tmpdir / "model")
model_path = tmpdir / model_path.name
dst_dir = tmpdir / "model"
shutil.copytree(model_path.parent, dst_dir)
model_path = dst_dir / model_path.name

# Run executable
exe_args = {
Expand Down

0 comments on commit c39eb8e

Please sign in to comment.