Skip to content

Commit

Permalink
test: 🧪 tox file added for multi version tests locally
Browse files Browse the repository at this point in the history
Signed-off-by: Onuralp SEZER <[email protected]>
  • Loading branch information
onuralpszr committed Sep 15, 2024
1 parent 2219417 commit 3e1893f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,13 @@ dev = [
"black~=24.8.0",
"pre-commit~=3.8.0",
"mypy~=1.11.2",
"flake8~=7.1.1"
"flake8~=7.1.1",
"tox~=4.18.1"
]

[project.scripts]
maestro = "maestro.cli.main:app"

[tool.setuptools.packages.find]
where = ["."]
exclude = ["cookbooks", "docs", "tests", "tests.*", "requirements"]
exclude = ["cookbooks", "docs", "tests,","test", "tests.*", "requirements"]
7 changes: 7 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[tox]
envlist = py39,py310,py311,py312

[testenv]
changedir = test
deps = pytest
commands = pytest

0 comments on commit 3e1893f

Please sign in to comment.