55 строки
1.4 KiB
Python
Executable File
55 строки
1.4 KiB
Python
Executable File
#!/bin/bash
|
|
|
|
# Copyright 2018 The Servo Project Developers. See the COPYRIGHT
|
|
# file at the top-level directory of this distribution.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
# http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
# <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
# option. This file may not be copied, modified, or distributed
|
|
# except according to those terms.
|
|
|
|
''''set -e
|
|
python3 -m coverage run $0
|
|
python3 -m coverage report -m --fail-under 100
|
|
exit
|
|
'''
|
|
|
|
"""
|
|
Run the decision task with fake Taskcluster APIs, to catch Python errors before pushing.
|
|
"""
|
|
|
|
import os
|
|
import sys
|
|
from unittest.mock import MagicMock
|
|
|
|
|
|
class TaskclusterRestFailure(Exception):
|
|
status_code = 404
|
|
|
|
|
|
class Index:
|
|
__init__ = insertTask = lambda *_, **__: None
|
|
|
|
def findTask(self, _):
|
|
raise TaskclusterRestFailure
|
|
|
|
|
|
stringDate = str
|
|
slugId = b"id".lower
|
|
Queue = fromNow = MagicMock()
|
|
sys.modules["taskcluster"] = sys.modules[__name__]
|
|
sys.dont_write_bytecode = True
|
|
os.environ.update(**{k: k for k in "TASK_ID TASK_OWNER TASK_SOURCE GIT_URL GIT_SHA".split()})
|
|
os.environ["APPSERVICES_HEAD_BRANCH"] = "refs/heads/auto"
|
|
import decision_task as decision_task
|
|
|
|
print("\n# Push:")
|
|
decision_task.main("github-pull-request", mock=True)
|
|
|
|
print("\n# Push with hot caches:")
|
|
decision_task.main("github-pull-request", mock=True)
|
|
|
|
# print("\n# Daily:")
|
|
# decision_task.main("daily", mock=True)
|