commit | cc9ae943495e1f67852ee897c397e9560feb78ed | [log] [tgz] |
---|---|---|
author | Kyle Gottfried <kyle.gottfried@outlook.com> | Fri Sep 01 18:40:13 2023 -0400 |
committer | GitHub <noreply@github.com> | Fri Sep 01 15:40:13 2023 -0700 |
tree | b4b0181f8abf041e619607bc35b5b24771ebf0ea | |
parent | 2d5b4d872e4f1946a2be44cbc408e47caa282cca [diff] |
Call unittest directly from tox.ini (#1133) Since moving to pyproject.toml tox began failing since the setup module had been removed. Instead we'll unittest directly from tox.
diff --git a/tox.ini b/tox.ini index e2e67a6..3fcea7e 100644 --- a/tox.ini +++ b/tox.ini
@@ -3,4 +3,4 @@ [testenv] commands= - python setup.py test + python -m unittest discover -p '*_test.py' yapftests/