summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoris Roovers <joris.roovers@gmail.com>2023-06-15 11:19:01 +0200
committerGitHub <noreply@github.com>2023-06-15 11:19:01 +0200
commit70932a147901c0abc5fc32e832e50ad9a3d16988 (patch)
treea061b471dc54f8aa0588d910b7d651e250fc7795
parent513c6559799e5deb1e7df461f2e553c3b4675d87 (diff)
Remove outdated run_tests.bat (#506)
Unit and integration tests now run on Windows using hatch, removing the need for this batch file.
-rw-r--r--tools/windows/run_tests.bat15
1 files changed, 0 insertions, 15 deletions
diff --git a/tools/windows/run_tests.bat b/tools/windows/run_tests.bat
deleted file mode 100644
index 16ebc8b..0000000
--- a/tools/windows/run_tests.bat
+++ /dev/null
@@ -1,15 +0,0 @@
-@echo off
-
-set arg1=%1
-
-IF "%arg1%"=="-p" (
- echo Running flake8...
- flake8 --extend-ignore=H307,H405,H803,H904,H802,H701 --max-line-length=120 --exclude="*settings.py,*.venv/*.py" gitlint qa examples
-) ELSE (
- :: Run passed arg, or all unit tests if passed arg is empty
- IF "%arg1%" == "" (
- pytest -rw -s gitlint
- ) ELSE (
- pytest -rw -s %arg1%
- )
-) \ No newline at end of file