Skip to content

Commit

Permalink
Remove gulp-qunit and remove JS tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Piotr Jarolewski committed Mar 25, 2016
1 parent 892ec70 commit 87d9a59
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 9 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ install:
- pip install django==$DJANGO_VERSION

script:
- gulp test
- make coveralls

after_success:
Expand Down
7 changes: 1 addition & 6 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ var gulp = require('gulp'),
bower = require('gulp-bower'),
prefixer = require('gulp-autoprefixer'),
sass = require('gulp-sass'),
sourcemaps = require('gulp-sourcemaps'),
qunit = require('gulp-qunit');
sourcemaps = require('gulp-sourcemaps');

var config = {
bowerDir: './bower_components/',
Expand Down Expand Up @@ -110,10 +109,6 @@ gulp.task('js', function(){
.pipe(gulp.dest("src/ralph/admin/static/"));
});

gulp.task('test', function() {
return gulp.src('./src/ralph/js_tests/*_runner.html').pipe(qunit());
});

gulp.task('watch', function() {
gulp.watch(config.srcRoot + 'scss/**/*.scss', ['scss']);
});
Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
"run-sequence": "~1.1.0"
},
"devDependencies": {
"gulp-watch": "~4.2.4",
"gulp-qunit": "~1.2.1"
"gulp-watch": "~4.2.4"
}
}

0 comments on commit 87d9a59

Please sign in to comment.