Skip to content

Commit

Permalink
Changed invocation of muatation test in CI to bash script to use virt…
Browse files Browse the repository at this point in the history
…ualenv
  • Loading branch information
dsandeephegde committed Nov 13, 2017
1 parent cc6c2ee commit ed47f89
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 16 deletions.
2 changes: 1 addition & 1 deletion etc/ci/buildbot_steps.yml
Expand Up @@ -68,7 +68,7 @@ linux-rel-nogate:
- ./mach clean-nightlies --keep 3 --force
- ./mach build --release
- python ./etc/ci/chaos_monkey_test.py
- python ./etc/ci/mutation_test.py
- bash ./etc/ci/mutation_test.sh

mac-rel-intermittent:
- ./mach clean-nightlies --keep 3 --force
Expand Down
15 changes: 0 additions & 15 deletions etc/ci/mutation_test.py

This file was deleted.

12 changes: 12 additions & 0 deletions etc/ci/mutation_test.sh
@@ -0,0 +1,12 @@
#!/usr/bin/env bash

# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.

set -o errexit
set -o nounset
set -o pipefail

source python/_virtualenv/bin/activate
python python/servo/mutation/init.py components/script/dom

0 comments on commit ed47f89

Please sign in to comment.