Add dynamic array tracing tests
[deliverable/barectf.git] / tox.ini
diff --git a/tox.ini b/tox.ini
index 7fcd5c5413d10603ea3e96a36154903b4c9b77a1..9b6de43997741008bc8bb82cd2a6dfefb0d1e225 100644 (file)
--- a/tox.ini
+++ b/tox.ini
@@ -12,11 +12,12 @@ passenv = TERM TERMINFO
 changedir = tests
 commands =
     poetry install -v
-    poetry run bash ./test.bash -t
+    poetry run py.test -v .
 
 [testenv:flake8]
-deps = flake8 >= 2.5
-commands = flake8 barectf
+commands =
+    poetry install -v
+    poetry run flake8 barectf
 
 [flake8]
 # E123, E125 skipped as they are invalid PEP-8.
@@ -26,20 +27,12 @@ ignore = E123,E125,E501
 builtins = _
 exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build,templates.py
 
-[testenv:pylint-errors]
-deps = pylint >= 1.6
-commands =
-    poetry install -v
-    poetry run pylint -f colorized -E barectf
-
-[testenv:pylint-warnings]
-deps = pylint >= 1.6
+[testenv:pylint]
 commands =
     poetry install -v
-    poetry run pylint -f colorized -d all -e W -r n barectf
+    poetry run pylint -f colorized -d all -e E,W -d W0212,W1618,W0622,W0201,W0703 barectf
 
-[testenv:pylint-full]
-deps = pylint >= 1.6
+[testenv:mypy]
 commands =
     poetry install -v
-    poetry run pylint -f colorized --disable=all -e R,E,W barectf
+    poetry run mypy barectf
This page took 0.023038 seconds and 4 git commands to generate.