summaryrefslogtreecommitdiff
path: root/.appveyor/tests.yml
diff options
context:
space:
mode:
Diffstat (limited to '.appveyor/tests.yml')
-rw-r--r--.appveyor/tests.yml12
1 files changed, 6 insertions, 6 deletions
diff --git a/.appveyor/tests.yml b/.appveyor/tests.yml
index 5a0f8f9..2ca4363 100644
--- a/.appveyor/tests.yml
+++ b/.appveyor/tests.yml
@@ -47,7 +47,7 @@ services:
cache:
# Rebuild cache if following file changes
# (See the file to zap the cache manually)
- - C:\Others -> scripts\appveyor.cache_rebuild
+ - C:\Others -> scripts\build\appveyor.cache_rebuild
# Script called before repo cloning
# init:
@@ -55,23 +55,23 @@ cache:
# Repository gets cloned, Cache is restored
install:
- - "%PYEXE% scripts\\appveyor.py install"
+ - "%PYEXE% scripts\\build\\appveyor.py install"
# PostgreSQL server starts now
build: off
build_script:
- - "%PYEXE% scripts\\appveyor.py build_script"
+ - "%PYEXE% scripts\\build\\appveyor.py build_script"
after_build:
- - "%PYEXE% scripts\\appveyor.py after_build"
+ - "%PYEXE% scripts\\build\\appveyor.py after_build"
before_test:
- - "%PYEXE% scripts\\appveyor.py before_test"
+ - "%PYEXE% scripts\\build\\appveyor.py before_test"
test_script:
- - "%PYEXE% scripts\\appveyor.py test_script"
+ - "%PYEXE% scripts\\build\\appveyor.py test_script"
# vim: set ts=4 sts=4 sw=4: