Skip to content

Commit

Permalink
Merge branch 'release/2.7.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
flibbertigibbet committed Sep 3, 2019
2 parents 3133361 + 5ca0d26 commit 9d415e4
Show file tree
Hide file tree
Showing 8 changed files with 546 additions and 724 deletions.
2 changes: 2 additions & 0 deletions deployment/ansible/roles/cac-tripplanner.app/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
pkg:
- binutils
- bzip2
- chromium-browser
- g++
- gdal-bin
- libpq-dev
- libproj-dev
Expand Down
4 changes: 2 additions & 2 deletions python/cac_tripplanner/deployment_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
boto==2.49.0
PyYAML==5.1.1
PyYAML==5.1.2
requests==2.22.0
troposphere==2.5.0
troposphere==2.5.1
majorkirby==1.0.0
6 changes: 3 additions & 3 deletions python/cac_tripplanner/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
base58==1.0.3
boto==2.49.0
Django==1.11.22
Django==1.11.24
django-ckeditor==5.7.1
django-image-cropping==1.2.0
django-extensions==1.9.9
Expand All @@ -9,7 +9,7 @@ easy-thumbnails==2.6.0
gunicorn==19.9.0
Pillow==6.1.0
psycopg2-binary==2.8.3
pytz==2019.1
PyYAML==5.1.1
pytz==2019.2
PyYAML==5.1.2
requests==2.22.0
git+https://github.com/azavea/[email protected]#egg=django-wpadmin
11 changes: 9 additions & 2 deletions src/karma/karma-coverage.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -116,11 +116,18 @@ module.exports = function(config) {

// start these browsers
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
browsers: ['PhantomJS'],
browsers: ['ChromeHeadless'],


// Continuous Integration mode
// if true, Karma captures browsers, runs the tests and exits
singleRun: true
singleRun: true,

customLaunchers: {
ChromeHeadless: {
base: 'Chromium',
flags: ['--no-sandbox', '--disable-gpu', '--headless', '--remote-debugging-port=9222']
}
}
});
};
11 changes: 9 additions & 2 deletions src/karma/karma-dev.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,11 +117,18 @@ module.exports = function(config) {

// start these browsers
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
browsers: ['PhantomJS'],
browsers: ['ChromeHeadless'],


// Continuous Integration mode
// if true, Karma captures browsers, runs the tests and exits
singleRun: true
singleRun: true,

customLaunchers: {
ChromeHeadless: {
base: 'Chromium',
flags: ['--no-sandbox', '--disable-gpu', '--headless', '--remote-debugging-port=9222']
}
}
});
};
11 changes: 9 additions & 2 deletions src/karma/karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,18 @@ module.exports = function(config) {

// start these browsers
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
browsers: ['PhantomJS'],
browsers: ['ChromeHeadless'],


// Continuous Integration mode
// if true, Karma captures browsers, runs the tests and exits
singleRun: true
singleRun: true,

customLaunchers: {
ChromeHeadless: {
base: 'Chromium',
flags: ['--no-sandbox', '--disable-gpu', '--headless', '--remote-debugging-port=9222']
}
}
});
};
Loading

0 comments on commit 9d415e4

Please sign in to comment.