66 lines
1.5 KiB
Python
66 lines
1.5 KiB
Python
# Copyright: Ankitects Pty Ltd and contributors
|
|
# License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
import os
|
|
import subprocess
|
|
import sys
|
|
|
|
if __name__ == "__main__":
|
|
isort_ini = sys.argv[1]
|
|
isort_ini = os.path.abspath(isort_ini)
|
|
fix = len(sys.argv) > 2
|
|
|
|
if sys.platform == "linux":
|
|
import fcntl
|
|
|
|
file = open("/tmp/anki-black", "w")
|
|
fcntl.lockf(file, fcntl.LOCK_EX)
|
|
|
|
if fix:
|
|
os.chdir(os.path.join(os.environ["BUILD_WORKSPACE_DIRECTORY"], "pylib"))
|
|
args = []
|
|
else:
|
|
folder = os.path.join(os.path.dirname(__file__), "..")
|
|
print(folder)
|
|
os.chdir(folder)
|
|
args = ["--diff", "--check"]
|
|
|
|
# work around issue with latest black
|
|
if sys.platform == "win32" and "HOME" in os.environ:
|
|
os.environ["USERPROFILE"] = os.environ["HOME"]
|
|
|
|
retcode = subprocess.run(
|
|
[
|
|
sys.executable,
|
|
"-m",
|
|
"black",
|
|
"-t",
|
|
"py39",
|
|
"anki",
|
|
"tests",
|
|
"tools",
|
|
"--exclude=_pb2|buildinfo|_gen",
|
|
]
|
|
+ args,
|
|
check=False,
|
|
).returncode
|
|
if retcode != 0:
|
|
sys.exit(retcode)
|
|
|
|
retcode = subprocess.run(
|
|
[
|
|
sys.executable,
|
|
"-m",
|
|
"isort",
|
|
"--settings-path",
|
|
isort_ini,
|
|
"anki",
|
|
"tests",
|
|
"tools",
|
|
]
|
|
+ args,
|
|
check=False,
|
|
).returncode
|
|
if retcode != 0:
|
|
sys.exit(retcode)
|