diff --git a/Makefile b/Makefile index e1946f8..92ad3ca 100644 --- a/Makefile +++ b/Makefile @@ -8,6 +8,7 @@ build: .PHONY: test test: @parallel --line-buffer PHP_VERSION={} COMPOSER_AUTH= TERM= ./bin/notty ./lib/bashunit ./tests/ ::: 81 82 83 + @[ -f phpctl.ini ] && rm phpctl.ini .PHONY: install install: diff --git a/tests/php_test.sh b/tests/php_test.sh index 325f32b..9ebab2d 100644 --- a/tests/php_test.sh +++ b/tests/php_test.sh @@ -14,7 +14,4 @@ function test_composer() { function test_phpctl_ini() { echo "memory_limit=1337M" > phpctl.ini assert_contains "memory_limit => 1337M => 1337M" "$(./bin/phpctl php -i | grep memory_limit)" - if [ -f phpctl.ini ]; then - rm phpctl.ini - fi }