Skip to content

Default to server 3.0.2 #80

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 7, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion neokit
Submodule neokit updated 5 files
+1 −1 .gitignore
+18 −8 README.md
+1 −0 neoctl.py
+73 −27 neoget.py
+28 −13 neorun.py
3 changes: 2 additions & 1 deletion runTests.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ try
}
else
{
npm run start-neo4j -- --neorun.start.args="$args"
$env.NEORUN_START_ARGS="$args"
npm run start-neo4j
}

npm test
Expand Down
3 changes: 2 additions & 1 deletion runTests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ if [ "$1" == "" ]; then
npm run start-neo4j
else
# Example: ./runTests.sh '-v 3.0.1 -p neo4j'
npm run start-neo4j -- --neorun.start.args=\'"$1"\'
# Example: npm run start-neo4j -- --neorun.start.args='-v 3.0.1 -p neo4j'
NEORUN_START_ARGS="$1" npm run start-neo4j
fi

sleep 2
Expand Down