From e64425403bb1767ca08b3d9a3896d715d1fdcec0 Mon Sep 17 00:00:00 2001 From: REJack Date: Mon, 3 Dec 2018 17:15:43 +0100 Subject: [PATCH] updated .gitignore & .gitlab-ci.yml --- .gitignore | 5 ++++- .gitlab-ci.yml | 8 ++++---- 2 files changed, 8 insertions(+), 5 deletions(-) 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