File tree 3 files changed +6
-11
lines changed
3 files changed +6
-11
lines changed Original file line number Diff line number Diff line change @@ -42,12 +42,7 @@ addons:
42
42
- wx2.8-i18n
43
43
44
44
45
- # mariadb: '10.1'
46
- before_script :
47
- - ci-helpers/travis/mysql_setup.sh
48
- # - ./ci-helpers/travis/mysql_setup.sh
49
- - ci-helpers/travis/postgres_setup.sh
50
- - ci-helpers/travis/freetds.sh
45
+
51
46
52
47
53
48
before_install :
@@ -67,7 +62,7 @@ install: # now just our code
67
62
# mariadb: '10.1'
68
63
before_script :
69
64
- chmod +x ./ci-helpers/travis/mysql_setup.sh
70
- # - chmod +x .. /ci-helpers/travis/postgres_setup.sh
65
+ # - chmod +x ./ci-helpers/travis/postgres_setup.sh
71
66
- chmod +x ./ci-helpers/travis/freetds.sh
72
67
- ./ci-helpers/travis/mysql_setup.sh
73
68
# - ./ci-helpers/travis/postgres_setup.sh
Original file line number Diff line number Diff line change @@ -21,8 +21,8 @@ mysql -e "create database IF NOT EXISTS odm2test;" --user=root
21
21
# ####
22
22
# install
23
23
# ####
24
- ls -al ./tests/scripts /sampledb/odm_mysql.sql ./tests/scripts /sampledb/odm_postgres.sql
25
- mysql --user=ODM --password=odm odm < ./tests/scripts /sampledb/odm_mysql.sql
24
+ ls -al ./tests/data /sampledb/odm_mysql.sql ./tests/data /sampledb/odm_postgres.sql
25
+ mysql --user=ODM --password=odm odm < ./tests/data /sampledb/odm_mysql.sql
26
26
mysql --user=root -e " show databases;"
27
27
mysql --user=root -e " GRANT ALL PRIVILEGES ON odm.* TO 'ODM'@'localhost';FLUSH PRIVILEGES;"
28
28
# these should produce results, if they don't the lower_case_table_names failed
Original file line number Diff line number Diff line change 2
2
psql -U postgres -c " create extension postgis"
3
3
psql -c ' DROP DATABASE IF EXISTS odmtest;' -U postgres;
4
4
psql -c ' create database odmtest;' -U postgres;
5
- # psql -U postgres -d odmtest -a -f ./tests/scripts /sampledb/odm_postgres.sql
5
+ # psql -U postgres -d odmtest -a -f ./tests/data /sampledb/odm_postgres.sql
6
6
psql -c ' DROP DATABASE IF EXISTS odm;' -U postgres;
7
7
psql -c ' create database odm;' -U postgres;
8
8
# # install
9
9
# add -a to psql to see full log, -q is quiet
10
- psql -U postgres -q -f ./tests/scripts /sampledb/odm_postgres.sql
10
+ psql -U postgres -q -f ./tests/data /sampledb/odm_postgres.sql
You can’t perform that action at this time.
0 commit comments