Skip to content
Merged
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
Ignore node modules when running integration tests in Docker
Node modules can take a lot of space, causing the copy of the local Git
working directory of Nextcloud to the container to be slow. However,
they are not needed when running the integration tests, so now they are
excluded from the copy.

Signed-off-by: Daniel Calviño Sánchez <[email protected]>
  • Loading branch information
danxuliu committed Apr 5, 2019
commit 679295ddee95ace6804e04aff631b68d0d04e134
1 change: 1 addition & 0 deletions tests/integration/run-docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@ function prepareDocker() {
--exclude="./data" \
--exclude="./data-autotest" \
--exclude="./tests" \
--exclude="node_modules" \
--directory=../../../../ \
.

Expand Down