We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 58f9309 + d72381e commit 43b15fcCopy full SHA for 43b15fc
.travis.yml
@@ -14,3 +14,6 @@ before_script:
14
15
script:
16
- phpunit --configuration ./tests/phpunit.xml
17
+
18
+after_script:
19
+ - ./tests/travis/teardown_arangodb.sh
tests/travis/teardown_arangodb.sh
@@ -0,0 +1,9 @@
1
2
+ARCH=$(arch)
3
+if [ "$ARCH" == "x86_64" ]; then
4
+ ARANGOD="arangod_x86_64"
5
+else
6
+ ARANGOD="arangod"
7
+fi
8
+echo "killing arangod binary ${ARANGOD}"
9
+killall -9 "${ARANGOD}" || true
0 commit comments