Skip to content

Commit a93d87d

Browse files
author
stephanie
committed
update travis script paths
1 parent 0cdb9ed commit a93d87d

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.travis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,17 +38,17 @@ addons:
3838
- libspatialite-dev
3939
# mariadb: '10.1'
4040
before_script:
41-
- ./scripts/mysql_setup.sh
42-
- ./scripts/postgres_setup.sh
43-
- ./scripts/freetds.sh
41+
- ./ci-helpers/travis/mysql_setup.sh
42+
- ./ci-helpers/travis/postgres_setup.sh
43+
- ./ci-helpers/travis/freetds.sh
4444

4545
before_install:
4646
# python -m pip makes the install go into the virtualenv
4747
- python -m pip install pandas
4848
- export PYMSSQL_BUILD_WITH_BUNDLED_FREETDS=1;python -m pip install pymssql
4949
# - python -m pip install mysql-python
5050
install: # now just our code
51-
- pip install git+https://github.com/ODM2/geoalchemy.git@odm2#egg=geoalchemy-0.7.3
51+
- pip install -e git+https://github.com/ODM2/geoalchemy.git@v0.7.4#egg=geoalchemy-0.7.4
5252
- pip install .
5353
- pip install -r requirements_tests.txt --allow-external pyodbc --allow-unverified pyodbc
5454
# pysqlite

appveyor.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -100,16 +100,16 @@ build_script:
100100
##https://github.com/sqlectron/sqlectron-core/blob/master/appveyor.yml
101101

102102
# sqlserver
103-
- ps: ci-helpers\appveyor\sqlserver.ps1 SQL2008R2SP2
104-
- sqlcmd -S localhost,1433 -U sa -P Password12! -Q "CREATE DATABASE odm2" -d "master"
105-
- sqlcmd -S localhost,1433 -U sa -P Password12! -i tests/usecasesql/littlebearriver/sampledatabases/odm2_ms_sql_server/LBR_ODM2_MSSQLDump.sql -d "odm2"
106-
- sqlcmd -S localhost,1433 -U sa -P Password12! -Q "select table_name from information_schema.tables" -d "odm2"
103+
# - ps: ci-helpers\appveyor\sqlserver.ps1 SQL2008R2SP2
104+
# - sqlcmd -S localhost,1433 -U sa -P Password12! -Q "CREATE DATABASE odm2" -d "master"
105+
# - sqlcmd -S localhost,1433 -U sa -P Password12! -i tests/usecasesql/littlebearriver/sampledatabases/odm2_ms_sql_server/LBR_ODM2_MSSQLDump.sql -d "odm2"
106+
# - sqlcmd -S localhost,1433 -U sa -P Password12! -Q "select table_name from information_schema.tables" -d "odm2"
107107
# # postgres
108108
# - psql createdb odm2
109109
# - psql -d odm2 -a -f tests/usecasesql/marchantariats/marchantariats.sql
110-
# # mysql
111-
# - mysql -e "drop database test; create database odm2;" --user=root
112-
# - mysql odm2 < tests/usecasesql/littlebearriver/sampledatabases/odm2_mysql/LBR_MySQL_SmallExample.sql --user=root
110+
# mysql
111+
- mysql -e "drop database test; create database odm2;" --user=root
112+
- mysql odm2 < tests/usecasesql/littlebearriver/sampledatabases/odm2_mysql/LBR_MySQL_SmallExample.sql --user=root
113113

114114
test_script:
115115
# Run the project tests

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
pyodbc
2-
six
2+
#six
33
sqlalchemy
44
-e git+https://github.com/ODM2/geoalchemy.git@v0.7.4#egg=geoalchemy-0.7.4
55
shapely

0 commit comments

Comments
 (0)