Browse Source

updated .gitignore & .gitlab-ci.yml

v3-dev
REJack 6 years ago
parent
commit
e64425403b
No known key found for this signature in database
GPG Key ID: 4A44B48700429F46
  1. 5
      .gitignore
  2. 8
      .gitlab-ci.yml

5
.gitignore vendored

@ -8,7 +8,10 @@ public/index.php
public/robots.txt
system/
tests/
tests/_support
tests/system
tests/.htaccess
tests/README.md
vendor/
writable/

8
.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
Loading…
Cancel
Save