2020-12-01 18:27:56 +00:00
|
|
|
#!/usr/bin/env python3
|
2019-06-12 21:42:43 +00:00
|
|
|
# Copyright 2019 The Android Open Source Project
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2023-03-30 05:06:01 +00:00
|
|
|
"""Wrapper to run linters and pytest with the right settings."""
|
2019-06-12 21:42:43 +00:00
|
|
|
|
2023-03-11 06:46:20 +00:00
|
|
|
import os
|
|
|
|
import subprocess
|
2019-06-12 21:42:43 +00:00
|
|
|
import sys
|
2023-08-22 01:20:32 +00:00
|
|
|
|
2023-01-25 21:19:54 +00:00
|
|
|
import pytest
|
2019-06-12 21:42:43 +00:00
|
|
|
|
2023-03-11 06:46:20 +00:00
|
|
|
|
2023-03-30 05:06:01 +00:00
|
|
|
ROOT_DIR = os.path.dirname(os.path.realpath(__file__))
|
|
|
|
|
|
|
|
|
2023-03-11 06:46:20 +00:00
|
|
|
def run_black():
|
2023-03-30 05:06:01 +00:00
|
|
|
"""Returns the exit code from black."""
|
|
|
|
return subprocess.run(
|
|
|
|
[sys.executable, "-m", "black", "--check", ROOT_DIR], check=False
|
|
|
|
).returncode
|
|
|
|
|
|
|
|
|
|
|
|
def run_flake8():
|
|
|
|
"""Returns the exit code from flake8."""
|
2023-03-11 06:46:20 +00:00
|
|
|
return subprocess.run(
|
2023-03-30 05:06:01 +00:00
|
|
|
[sys.executable, "-m", "flake8", ROOT_DIR], check=False
|
2023-03-11 06:46:20 +00:00
|
|
|
).returncode
|
|
|
|
|
|
|
|
|
2023-08-22 01:20:32 +00:00
|
|
|
def run_isort():
|
|
|
|
"""Returns the exit code from isort."""
|
|
|
|
return subprocess.run(
|
|
|
|
[sys.executable, "-m", "isort", "--check", ROOT_DIR], check=False
|
|
|
|
).returncode
|
|
|
|
|
|
|
|
|
2023-03-11 06:46:20 +00:00
|
|
|
def main(argv):
|
|
|
|
"""The main entry."""
|
2023-03-30 05:06:01 +00:00
|
|
|
checks = (
|
|
|
|
lambda: pytest.main(argv),
|
|
|
|
run_black,
|
|
|
|
run_flake8,
|
2023-08-22 01:20:32 +00:00
|
|
|
run_isort,
|
2023-03-30 05:06:01 +00:00
|
|
|
)
|
|
|
|
return 0 if all(not c() for c in checks) else 1
|
2023-03-11 06:46:20 +00:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
sys.exit(main(sys.argv[1:]))
|