docs: cleanup: Rephrase and correct typos
[barectf.git] / tox.ini
diff --git a/tox.ini b/tox.ini
index a5ca135f6218a20099632e00e5dbbc930c12d137..68883ec51f5b6ba794b80fe93054f804f03f3bc5 100644 (file)
--- a/tox.ini
+++ b/tox.ini
@@ -1,18 +1,23 @@
 [tox]
-minversion = 3.3
+minversion = 3.18
 isolated_build = true
 envlist = tests
 skipsdist = True
 
 [testenv]
-whitelist_externals = poetry
-passenv = TERM TERMINFO
+allowlist_externals = poetry
+passenv =
+    CC
+    C_INCLUDE_PATH
+    LIBRARY_PATH
+    TERM
+    TERMINFO
 
 [testenv:tests]
 changedir = tests
 commands =
     poetry install -v
-    poetry run bash ./test.bash -t
+    poetry run py.test -v .
 
 [testenv:flake8]
 commands =
@@ -31,3 +36,8 @@ exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build,templates.py
 commands =
     poetry install -v
     poetry run pylint -f colorized -d all -e E,W -d W0212,W1618,W0622,W0201,W0703 barectf
+
+[testenv:mypy]
+commands =
+    poetry install -v
+    poetry run mypy barectf
This page took 0.022392 seconds and 4 git commands to generate.