Skip to content

Commit

Permalink
chore: add tox
Browse files Browse the repository at this point in the history
  • Loading branch information
iunary committed Apr 28, 2023
1 parent de7e701 commit 6001a7b
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
[tox]
skipdist = True
minversion = 3.8
envlist = default, lint, security


[testenv]
skip_install = true
commands =
python -m unittest

[testenv:lint]
deps =
flake8

commands =
flake8 .

[testenv:security]
deps =
bandit

commands =
bandit --recursive burrowkv

0 comments on commit 6001a7b

Please sign in to comment.