Skip to content

Commit 0098ae0

Browse files
committed
Merge pull request pymssql#393 from pymssql/cleanup-tree
Cleanup tree
2 parents 557f351 + 24de23c commit 0098ae0

25 files changed

Lines changed: 11 additions & 99 deletions

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ install:
1818
- if [[ $FREETDS_VERSION == '0.95' ]]; then export PYMSSQL_BUILD_WITH_BUNDLED_FREETDS=1; fi
1919
- python setup.py develop
2020
script:
21-
- . bin/travis_env.sh
21+
- . dev/travis_env.sh
2222
- echo "\$PYMSSQL_TEST_DATABASE = \"$PYMSSQL_TEST_DATABASE\""
2323
- py.test -v
2424
- cd docs && test -z "$(make SPHINXOPTS='-q' html 2>&1 | egrep -w 'SEVERE:|ERROR:')"

appveyor.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -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:
139139
install:
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

160160
before_build:
@@ -172,7 +172,7 @@ build_script:
172172
- "%CMD_IN_ENV% python setup.py install"
173173

174174
before_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

189189
test_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
}
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)