This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
lockdir='/tmp/my.lock' | |
if ! mkdir "${lockdir}" &>/dev/null ; then | |
echo "Lock failed - exit" >&2 | |
exit 1 | |
fi | |
rm -rf "${lockdir}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
TESTS_PATH="tests"; ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha $TESTS_PATH;open coverage/lcov-report/index.html; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/php | |
<?php | |
//Récupération des fichier modifiés par le commit | |
exec('git diff --name-only HEAD | grep -E \'(.php)$\'', $output); | |
$cmds = [ | |
['cmd' => 'php-cs-fixer fix'], | |
['cmd' => 'php -l','return' => 0], | |
]; | |
foreach ($output as $file) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace BenchmarkNosql\Libraries\Storage; | |
use triagens\ArangoDb\Connection; | |
use triagens\ArangoDb\ConnectionOptions; | |
use triagens\ArangoDb\UpdatePolicy; | |
use triagens\ArangoDb\Collection; | |
use triagens\ArangoDb\CollectionHandler; | |
use triagens\ArangoDb\DocumentHandler; |
NewerOlder