Initial commit

This commit is contained in:
Kristofers Solo
2023-03-15 23:57:51 +02:00
commit 20b2101274
16 changed files with 1143 additions and 0 deletions

25
tox.ini Normal file
View File

@@ -0,0 +1,25 @@
[tox]
minversion = 3.8.0
envlist = py310, flake8, mypy
isolated_build = true
[gh-actions]
python =
3.10: py310, mypy, flake8
[testenv]
setenv =
PYTHONPATH = {toxinidir}
deps =
-r{toxinidir}/requirements_dev.txt
[testenv:flake8]
basepython = python3.10
deps = flake8
commands = flake8 OSSDB_web
[testenv:mypy]
basepython = python3.10
deps =
-r{toxinidir}/requirements_dev.txt
commands = mypy OSSDB_web