Skip to content
This repository has been archived by the owner on Oct 25, 2022. It is now read-only.

Commit

Permalink
Why are SQL dialects different?
Browse files Browse the repository at this point in the history
  • Loading branch information
tweirtx committed May 1, 2019
1 parent 1d762fb commit 5c87edb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ jobs:
- stage: test
env: DB_TYPE=postgres
os: linux
before_install: psql -f ci.sql -U postgres
before_install: psql -f ci_pg.sql -U postgres
before_script: python3 ci_configurator.py
script: python3 -m timetracker --test
after_script: cat config.json
- stage: test
env: DB_TYPE=mysql
os: linux
before_install: mysql mysql < ci.sql
before_install: mysql mysql < ci_mysql.sql
before_script: python3 ci_configurator.py
script: python3 -m timetracker --test
after_script: cat config.json
Expand Down
2 changes: 2 additions & 0 deletions ci_mysql.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
CREATE DATABASE timetracker;
CREATE USER timetracker IDENTIFIED BY 'timetracker';
File renamed without changes.

0 comments on commit 5c87edb

Please sign in to comment.