-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
41 lines (34 loc) · 1.21 KB
/
gulpfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
var gulp = require('gulp');
var run = require('gulp-run');
var notify = require('gulp-notify');
var fileExists = require('file-exists');
gulp.task('watch', function() {
gulp.watch(['src/**/*.php', 'tests/**/*.php'], function (event) {
var file = event.path;
var phpcs = file;
if (file.includes('tests')) {
file = file
.replace("/tests/Integration/", "/src/")
.replace("Test.php", ".php");
}
var test = file
.replace("/src/", "/tests/Integration/")
.replace(".php", "Test.php");
run('clear').exec();
run("./vendor/bin/phpcs --runtime-set ignore_warnings_on_exit true --standard=PSR2 " + phpcs)
.exec()
.on('error', notify.onError({
title: 'Failure',
message: 'Linting has failed.!',
}));
if (fileExists(test)) {
run("./rebuild_database; ./vendor/bin/phpunit --colors=always " + test)
.exec()
.on('error', notify.onError({
title: 'Failure',
message: 'Integration tests failed.!',
}));
}
});
});
gulp.task('default', ['watch']);