Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Fix paths
  • Loading branch information
asbiin committed Feb 18, 2018
commit e37c36282d160ba74c42f32585b9c4adfb68e825
11 changes: 9 additions & 2 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
.gitignore
**/.gitignore
**/.gitkeep
.ci/
bootstrap/cache/*
.env
CODE_OF_CONDUCT.md
CONTRIBUTING.md
Expand All @@ -17,7 +17,7 @@ Homestead.yaml
node_modules/
npm-debug.log*
persist/
phpunit.xml
phpunit*
Procfile
public/storage/
resources/vendor/
Expand All @@ -27,6 +27,13 @@ scripts/tests
scripts/vagrant
server.php
sonar-project.properties
storage/app/public/*
storage/debugbar/*
storage/framework/cache/*
storage/framework/sessions/*
storage/framework/views/*
storage/logs/*
.styleci.yml
tests/
.travis.yml*
vendor/
2 changes: 1 addition & 1 deletion scripts/tests/runtests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set -evuo pipefail

SELF_PATH=$(cd -P -- "$(dirname -- "$0")" && /bin/pwd -P)
ROOT=$(realpath $SELF_PATH/..)
ROOT=$(realpath $SELF_PATH/../..)
HOST=localhost

$SELF_PATH/start-selenium.sh
Expand Down
2 changes: 1 addition & 1 deletion scripts/tests/server-cc.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
/** Coverage files destination. */
const STORAGE = '/results/coverage';

$root = realpath(__DIR__.'/../');
$root = realpath(__DIR__.'/../../');

$uri = urldecode(
parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH)
Expand Down
2 changes: 1 addition & 1 deletion scripts/tests/start-selenium.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ realpath ()
set -evuo pipefail

SELF_PATH=$(cd -P -- "$(dirname -- "$0")" && /bin/pwd -P)
ROOT=$(realpath $SELF_PATH/..)
ROOT=$(realpath $SELF_PATH/../..)

if [ -z "${DISPLAY:-}" ]; then
echo Start Xvfb;
Expand Down