diff --git a/.gitignore b/.gitignore index 63ec819..3b17490 100644 --- a/.gitignore +++ b/.gitignore @@ -8,7 +8,10 @@ public/index.php public/robots.txt system/ -tests/ +tests/_support +tests/system +tests/.htaccess +tests/README.md vendor/ writable/ diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7d0bfcf..1bef0fb 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -17,10 +17,6 @@ before_script: services: - mysql:5.7 -artifacts: - paths: - - build/logs/clover.xml - # Set any variables we need variables: # Configure mysql environment variables (https://hub.docker.com/r/_/mysql/) @@ -30,5 +26,9 @@ variables: # Run our tests # If Xdebug was installed you can generate a coverage report and see code coverage metrics. test: + artifacts: + paths: + - build/logs/clover.xml + script: - vendor/bin/phpunit --configuration phpunit.xml --coverage-text --colors=never \ No newline at end of file