summaryrefslogtreecommitdiff
path: root/dev/commands.py
diff options
context:
space:
mode:
authorAineopintojen-harjoitustyo-Algoritmit-j <github-hy-tiralabra@v.hix.fi>2024-02-17 09:41:48 +0200
committerAineopintojen-harjoitustyo-Algoritmit-j <github-hy-tiralabra@v.hix.fi>2024-02-17 09:41:48 +0200
commite785dbd4f726c5716f21071ed25dc35ac87c0c74 (patch)
tree781373b78380a1ffd1ea8c5dc8ceb2bd313631e9 /dev/commands.py
parent4eff4a32cfa594cc2a3df3885de92d407edc6675 (diff)
Dev tools and directory structure rework.
Diffstat (limited to 'dev/commands.py')
-rw-r--r--dev/commands.py36
1 files changed, 36 insertions, 0 deletions
diff --git a/dev/commands.py b/dev/commands.py
new file mode 100644
index 0000000..ed9341a
--- /dev/null
+++ b/dev/commands.py
@@ -0,0 +1,36 @@
+import pytest
+import pylint
+from subprocess import run
+
+def dev_pylint():
+ return pylint.run_pylint(argv=["-v", "src/miinaharava"])
+
+def dev_pytest():
+ return pytest.main(["-v"])
+
+def dev_coverage():
+ return run(
+ "poetry run python3 -m coverage run --branch -m pytest -v ".split()
+ ).returncode
+
+def dev_covhtml():
+ if e := dev_coverage(): return e
+ return run(
+ "poetry run python3 -m coverage html".split()
+ ).returncode
+
+def dev_covxml():
+ if e := dev_coverage(): return e
+ return run(
+ "poetry run python3 -m coverage xml".split()
+ ).returncode
+
+def dev_covff():
+ if e := dev_covhtml(): return e
+ return run(
+ "firefox htmlcov/index.html".split()
+ ).returncode
+
+def dev_all():
+ if e := dev_covff(): return e
+ return dev_pylint()