From b6f8333cf12a898046954f39f15d7539d72653b2 Mon Sep 17 00:00:00 2001 From: maxirmx Date: Sun, 25 Oct 2015 21:51:33 +0300 Subject: [PATCH] Added project dir to PYTHONPATH --- .appveyor.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.appveyor.yml b/.appveyor.yml index b5978979c..5415b8f4a 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -36,7 +36,8 @@ install: # Prepend newly installed Python to the PATH of this build (this cannot be # done from inside the powershell script as it would require to restart # the parent CMD process). - - "SET PATH=%CD%;%PYTHON%;%PYTHON%\\Scripts;%PATH%" + - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%" + - "SET PYTHONPATH=%CD%;%PYTHONPATH%" # Check that we have the expected version and architecture for Python - "python --version"