Skip to content

Commit 82da20f

Browse files
committed
Updated to move composer install to entry point
1 parent 5ed0f0f commit 82da20f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ install:
2626
- docker-compose version
2727
- docker-compose up --build -d
2828
- docker ps -a
29-
- docker exec -it php_test composer install --prefer-source --no-interaction
3029

3130
script:
3231
- docker-compose up

docker/entrypoint.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
#!/usr/bin/env bash
2-
sleep 3 && php ./vendor/bin/phpunit
2+
3+
sleep 3 && composer install --prefer-source --no-interaction && php ./vendor/bin/phpunit

0 commit comments

Comments
 (0)