Skip to content

Commit 7d67c64

Browse files
committed
switch from tox.ini to pyproject.toml
Signed-off-by: Unai Martinez-Corral <umartinezcorral@antmicro.com>
1 parent 409c95d commit 7d67c64

File tree

2 files changed

+23
-10
lines changed

2 files changed

+23
-10
lines changed

pyproject.toml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
[build-system]
2+
requires = [
3+
"setuptools >= 35.0.2",
4+
"wheel >= 0.29.0"
5+
]
6+
build-backend = "setuptools.build_meta"
7+
8+
[tool.black]
9+
line-length = 120
10+
11+
[tool.tox]
12+
legacy_tox_ini = """
13+
[tox]
14+
isolated_build = true
15+
envlist = py3
16+
17+
[testenv]
18+
deps =
19+
pytest
20+
requests
21+
filetype
22+
commands = pytest {posargs}
23+
"""

tox.ini

Lines changed: 0 additions & 10 deletions
This file was deleted.

0 commit comments

Comments
 (0)