fix path to powershel scripts

This commit is contained in:
Job Evers-Meltzer 2016-09-19 13:28:22 -07:00
parent 95f3165922
commit b2e28d297e
2 changed files with 6 additions and 7 deletions

View file

@ -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

View file

@ -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