From b2e28d297e61b9459718f73165968530da7862a2 Mon Sep 17 00:00:00 2001 From: Job Evers-Meltzer Date: Mon, 19 Sep 2016 13:28:22 -0700 Subject: [PATCH] fix path to powershel scripts --- .appveyor.yml | 10 +++------- packaging/windows/test.ps1 | 3 +++ 2 files changed, 6 insertions(+), 7 deletions(-) create mode 100644 packaging/windows/test.ps1 diff --git a/.appveyor.yml b/.appveyor.yml index f4ef4bef4..e806a3355 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -16,12 +16,12 @@ notifications: clone_folder: c:\projects\lbry init: -- ps: .\packaging\windows\init.ps1 +- ps: "$(APPVEYOR_BUILD_FOLDER)\packaging\windows\init.ps1" install: - nuget install secure-file -ExcludeVersion - secure-file\tools\secure-file -decrypt packaging\windows\certs\lbry2.pfx.enc -secret %pfx_key% -- ps: .\packaging\windows\install.ps1 +- ps: "$(APPVEYOR_BUILD_FOLDER)\packaging\windows\install.ps1" build_script: @@ -30,12 +30,8 @@ build_script: test_script: -- ps: >- - C:\Python27\Scripts\pip.exe install mock +- ps: "$(APPVEYOR_BUILD_FOLDER)\packaging\windows\test.ps1" - C:\Python27\Scripts\pip.exe install pylint - - C:\Python27\python.exe C:\Python27\Scripts\trial.py C:\projects\lbry\tests artifacts: - path: dist/*.msi diff --git a/packaging/windows/test.ps1 b/packaging/windows/test.ps1 new file mode 100644 index 000000000..777d4acd0 --- /dev/null +++ b/packaging/windows/test.ps1 @@ -0,0 +1,3 @@ +C:\Python27\Scripts\pip.exe install mock +C:\Python27\Scripts\pip.exe install pylint +C:\Python27\python.exe C:\Python27\Scripts\trial.py C:\projects\lbry\tests \ No newline at end of file