@@ -12,7 +12,7 @@ environment:
1212 # SDK v7.0 MSVC Express 2008's SetEnv.cmd script will fail if the
1313 # /E:ON and /V:ON options are not enabled in the batch script intepreter
1414 # See: http://stackoverflow.com/a/13751649/163740
15- CMD_IN_ENV : " cmd /E:ON /V:ON /C .\\ appveyor\\ run_with_env.cmd"
15+ CMD_IN_ENV : " cmd /E:ON /V:ON /C .\\ dev \\ appveyor\\ run_with_env.cmd"
1616 OPENSSL_VER : 1.0.2e
1717 FREETDS_VER : 0.95.81
1818
@@ -139,7 +139,7 @@ environment:
139139install :
140140 # Install Python (from the official .msi of http://python.org) and pip when
141141 # not already installed.
142- - " powershell appveyor\\ install.ps1"
142+ - " powershell dev \\ appveyor\\ install.ps1"
143143
144144 # Prepend current Python and scripts dirs to the PATH of this build (this cannot be
145145 # done from inside the powershell script as it would require to restart
@@ -154,7 +154,7 @@ install:
154154 # compiled extensions and are not provided as pre-built wheel packages,
155155 # pip will build them from source using the MSVC compiler matching the
156156 # target Python version and architecture
157- - " %CMD_IN_ENV% pip install -r dev-requirements.pip"
157+ - " %CMD_IN_ENV% pip install -r dev\\ dev -requirements.pip"
158158 - cmd : if %PYTHON_VERSION:~0,1% == 3 ( %CMD_IN_ENV% pip install gevent==1.1.b6 ) else ( %CMD_IN_ENV% pip install gevent )
159159
160160before_build :
@@ -172,7 +172,7 @@ build_script:
172172 - " %CMD_IN_ENV% python setup.py install"
173173
174174before_test :
175- - copy appveyor\tests.cfg tests\
175+ - copy dev\ appveyor\tests.cfg tests\
176176 # Add relevant OpenSSL DLLs dir to PATH envvar
177177 - ps : |
178178 if ($env:PYTHON_ARCH -eq 32) {
@@ -184,7 +184,7 @@ before_test:
184184 - set PATH=%CD%\freetds\vs%VS_VER%_%PYTHON_ARCH%\lib;%PATH%
185185 # Start, reconfigure and restart SQL Server
186186 - net start MSSQL$%INSTANCENAME%
187- - " powershell appveyor\\ sql-server-activate-tcp-fixed-port.ps1"
187+ - " powershell dev \\ appveyor\\ sql-server-activate-tcp-fixed-port.ps1"
188188
189189test_script :
190190 - " py.test --junitxml=junit.xml"
@@ -206,6 +206,6 @@ on_success:
206206 if ($env:APPVEYOR_REPO_TAG -eq "true" -or $env:APPVEYOR_REPO_TAG -eq "True") {
207207 If ($env:INSTANCENAME -eq "SQL2012SP1") {
208208 pip install twine --upgrade
209- twine upload -u $env:PYPI_USERNAME -p $env:PYPI_PASSWORD --config-file appveyor\pypirc -r pypi $env:APPVEYOR_BUILD_FOLDER\dist\*.whl
209+ twine upload -u $env:PYPI_USERNAME -p $env:PYPI_PASSWORD --config-file dev\ appveyor\pypirc -r pypi $env:APPVEYOR_BUILD_FOLDER\dist\*.whl
210210 }
211211 }
0 commit comments