Skip to content

Commit

Permalink
Testing out setupTestDatabases.sh; #10
Browse files Browse the repository at this point in the history
- .travis.yml - Added call to setupTestDatabases.sh in before_script

- bin/setupTestDatabases.sh - Proof of concept that echoes "Running Test
  Database Script"
  • Loading branch information
msnyon committed Jan 30, 2016
1 parent 675ca7c commit 8ea35cd
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@ node_js:
- "4.2.6"
- "5.5.0"
addons:
postgresql: 9.4
postgresql: 9.5
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-4.8
- g++-4.8
env:
- TRAVIS=travis CXX=g++-4.8
- TRAVIS=travis CXX=g++-4.8
before_script:
- ./bin/setupTestDatabases.sh
5 changes: 5 additions & 0 deletions bin/setupTestDatabases.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/sh
#
#
#cp config/config.json.tmpl config/config.json
echo "Running Test Database Script"

0 comments on commit 8ea35cd

Please sign in to comment.