diff options
| author | Alban Peignier | 2018-02-01 11:02:46 +0100 |
|---|---|---|
| committer | Alban Peignier | 2018-02-01 11:02:46 +0100 |
| commit | 799e9dddd06d60d5e22ad4289c23534c107b40db (patch) | |
| tree | 2df0c4987706039e51ecaa227d2a55ac46f2de72 /lib/tasks | |
| parent | 98f82c27b08dfc09223ae51650bf0bd2c80b9112 (diff) | |
| download | chouette-core-799e9dddd06d60d5e22ad4289c23534c107b40db.tar.bz2 | |
Add env variable to disable ci:jest if needed. Refs #5802
Diffstat (limited to 'lib/tasks')
| -rw-r--r-- | lib/tasks/ci.rake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tasks/ci.rake b/lib/tasks/ci.rake index 3e73b7a3b..82619d04b 100644 --- a/lib/tasks/ci.rake +++ b/lib/tasks/ci.rake @@ -38,7 +38,7 @@ namespace :ci do end task :jest => "ci:assets" do - sh "node_modules/.bin/jest" + sh "node_modules/.bin/jest" unless ["CHOUETTE_JEST_DISABLED"] end desc "Deploy after CI" |
