Browse Source

updated .gitlab-ci.yml & phpunit.xml

v3-dev
REJack 6 years ago
parent
commit
92ba674283
No known key found for this signature in database
GPG Key ID: 4A44B48700429F46
  1. 2
      .gitlab-ci.yml
  2. 6
      phpunit.xml

2
.gitlab-ci.yml

@ -20,7 +20,7 @@ services:
# Set any variables we need # Set any variables we need
variables: variables:
# Configure mysql environment variables (https://hub.docker.com/r/_/mysql/) # Configure mysql environment variables (https://hub.docker.com/r/_/mysql/)
MYSQL_DATABASE: mysql_database MYSQL_DATABASE: aauth_v3_ci4_testing
MYSQL_ROOT_PASSWORD: root MYSQL_ROOT_PASSWORD: root
# Run our tests # Run our tests

6
phpunit.xml

@ -10,12 +10,12 @@
stopOnIncomplete="false" stopOnIncomplete="false"
stopOnSkipped="false"> stopOnSkipped="false">
<testsuites> <testsuites>
<testsuite name="app"> <testsuite name="aauth">
<directory>./tests</directory> <directory>./tests/Aauth</directory>
<exclude>./tests/system</exclude> <exclude>./tests/system</exclude>
</testsuite> </testsuite>
<testsuite name="database"> <testsuite name="database">
<directory>./tests/database</directory> <directory>./tests/Aauth/Database</directory>
</testsuite> </testsuite>
</testsuites> </testsuites>

Loading…
Cancel
Save