Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/gallery.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Paroz <github@oparoz.com>2015-08-10 01:42:03 +0300
committerOlivier Paroz <github@oparoz.com>2015-08-10 01:42:03 +0300
commita8b1af48860f359435fa451fa9c765c420b3dd33 (patch)
tree19f5c624b84b3c141ffb748510056678d5abe795 /codeception.yml
parent9f69bde62dafc02d1b52e54b2660e230babd85a5 (diff)
Switch to Codeception for testing
Diffstat (limited to 'codeception.yml')
-rw-r--r--codeception.yml33
1 files changed, 33 insertions, 0 deletions
diff --git a/codeception.yml b/codeception.yml
new file mode 100644
index 00000000..50e7b6d2
--- /dev/null
+++ b/codeception.yml
@@ -0,0 +1,33 @@
+actor: Tester
+paths:
+ tests: tests
+ log: tests/_output
+ data: tests/_data
+ support: tests/_support
+ envs: tests/_envs
+settings:
+ bootstrap: _bootstrap.php
+ colors: true
+ memory_limit: 1024M
+extensions:
+ enabled:
+ - Codeception\Extension\RunFailed
+coverage:
+ enabled: true
+ include:
+ - appinfo/*
+ - controller/*
+ - environment/*
+ - http/*
+ - middleware/*
+ - preview/*
+ - service/*
+ exclude:
+ - css/*
+ - documentation/*
+ - img/*
+ - js/*
+ - l10n/*
+ - templates/*
+ - tests/*
+ - vendor/*