Skip to content

Commit

Permalink
Merge pull request #149 from appscot/fix_tests
Browse files Browse the repository at this point in the history
Fix build (by manipulating dependencies' versions)
  • Loading branch information
dmarcelino authored Jul 4, 2016
2 parents 97a2278 + 3695331 commit 384deb3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,13 @@ clean:
@echo "\n\nDROPPING ALL COLLECTIONS from db: $(DB)"
@echo "NOTICE: If operation fails, please ensure you've set the correct credentials in orientjs.opts file"
@echo "Note: you can choose which db to drop by appending 'DB=<db_name>', e.g. 'make clean DB=waterline-test-orientdb'\n"
./node_modules/.bin/oriento db drop $(DB) || true
./node_modules/.bin/orientjs db drop $(DB) || true

clean-all:
@echo "\n\nDROPPING DATABASES: waterline-test-integration, waterline-test-orientdb"
@echo "NOTICE: If operation fails, please ensure you've set the correct credentials in orientjs.opts file\n"
./node_modules/.bin/oriento db drop waterline-test-integration > /dev/null 2>&1 || true
./node_modules/.bin/oriento db drop waterline-test-orientdb > /dev/null 2>&1 || true
./node_modules/.bin/orientjs db drop waterline-test-integration > /dev/null 2>&1 || true
./node_modules/.bin/orientjs db drop waterline-test-orientdb > /dev/null 2>&1 || true
@echo "Done"

.PHONY: coverage
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@
"istanbul": "^0.3.5",
"jshint": "*",
"mocha": "*",
"waterline": "~0.10.18",
"waterline-schema": "0.1.18",
"waterline": "0.10.27",
"waterline-adapter-tests": "0.10.11"
},
"waterlineAdapter": {
Expand Down

0 comments on commit 384deb3

Please sign in to comment.