UNPKG
gulp-pylint
Version:
latest (0.0.3)
0.0.3
0.0.2
0.0.1
Run Pylint in Gulp
github.com/benmcp/gulp-pylint
benmcp/gulp-pylint
gulp-pylint
/
test
/
test.js
13 lines
(10 loc)
•
228 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
'use strict'
;
import
{expect}
from
'chai'
;
import
shell
from
'shelljs'
;
const
file =
'./test/sample.py'
;
describe
(
'gulp tatsk'
,
() =>
{
it
(
'output no errors'
,
(
done
) =>
{ shell.
exec
(
'gulp pylint'
);
done
(); }); });