]> git.madduck.net Git - etc/vim.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Move fuzz.py to scripts/ (#3199)
authorRichard Si <63936253+ichard26@users.noreply.github.com>
Sun, 31 Jul 2022 14:34:29 +0000 (10:34 -0400)
committerGitHub <noreply@github.com>
Sun, 31 Jul 2022 14:34:29 +0000 (07:34 -0700)
scripts/fuzz.py [moved from fuzz.py with 100% similarity]
tox.ini

similarity index 100%
rename from fuzz.py
rename to scripts/fuzz.py
diff --git a/tox.ini b/tox.ini
index 7af9e48d6f06079d9c610515e8db11c37b9f2a80..51ff4872db0632bc97ba33a5e21748ea4f2136f2 100644 (file)
--- a/tox.ini
+++ b/tox.ini
@@ -59,7 +59,7 @@ deps =
 commands =
     pip install -e .[d]
     coverage erase
-    coverage run fuzz.py
+    coverage run {toxinidir}/scripts/fuzz.py
     coverage report
 
 [testenv:run_self]