diff options
author | Mario <mario@mariovavti.com> | 2022-02-11 11:05:11 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2022-02-11 11:05:11 +0000 |
commit | 5a7688e09965856e99e058b3284b5fe426bfbb45 (patch) | |
tree | 3cbeb0d1e79ab83496d5153e2c32d5bed388b7de | |
parent | c721f01c76d5af4df9a42bd8d36df67a23e0f9d4 (diff) | |
download | volse-hubzilla-5a7688e09965856e99e058b3284b5fe426bfbb45.tar.gz volse-hubzilla-5a7688e09965856e99e058b3284b5fe426bfbb45.tar.bz2 volse-hubzilla-5a7688e09965856e99e058b3284b5fe426bfbb45.zip |
do phpunit though
-rw-r--r-- | .gitlab-ci.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ddb2bf9fe..1628949f9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -49,13 +49,13 @@ before_script: - echo 'xdebug.mode=coverage' >> /usr/local/etc/php/php.ini # hidden job definition with template for MySQL/MariaDB -#.job_template_mysql: &job_definition_mysql -# stage: test -# script: +.job_template_mysql: &job_definition_mysql + stage: test + script: # - echo "USE $MYSQL_DATABASE; $(cat ./install/schema_mysql.sql)" | mysql --user=root --password="$MYSQL_ROOT_PASSWORD" --host=mysql "$MYSQL_DATABASE" # - echo "SHOW DATABASES;" | mysql --user=root --password="$MYSQL_ROOT_PASSWORD" --host=mysql "$MYSQL_DATABASE" # - echo "USE $MYSQL_DATABASE; SHOW TABLES;" | mysql --user=root --password="$MYSQL_ROOT_PASSWORD" --host=mysql "$MYSQL_DATABASE" -# - vendor/bin/phpunit --configuration tests/phpunit.xml --coverage-text + - vendor/bin/phpunit --configuration tests/phpunit.xml --coverage-text # hidden job definition with template for PostgreSQL #.job_template_postgres: &job_definition_postgres |