PHP Classes

File: phpunit.xml.dist

Recommend this page to a friend!
  Classes of Scott Arciszewski   CMS Airship   phpunit.xml.dist   Download  
File: phpunit.xml.dist
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: CMS Airship
Content management system with security features
Author: By
Last change: Add a very basic integration test.

Skip more.

Fix unit tests.

Travis CI is a pain.

Travis CI is pathologically incapable of being simple to work with

I give up. Fix it later.

Life's too short for getting Travis CI to work.
Date: 7 years ago
Size: 963 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8"?> <phpunit backupGlobals="false" backupStaticAttributes="false" bootstrap="src/testing-preamble.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" failOnRisky="true" failOnWarning="true" processIsolation="false" stopOnError="false" stopOnFailure="false" syntaxCheck="true" > <testsuites> <testsuite name="Unit Tests"> <directory suffix="Test.php">./test/unit</directory> </testsuite> <testsuite name="Integration Tests"> <directory suffix="Test.php">./test/integration</directory> </testsuite> </testsuites> <filter> <whitelist processUncoveredFilesFromWhitelist="true"> <directory suffix=".php">./src</directory> </whitelist> </filter> </phpunit>