mirror of
https://github.com/socialwifi/RouterOS-api.git
synced 2025-09-01 15:35:49 +02:00
18 lines
287 B
INI
18 lines
287 B
INI
[tox]
|
|
requires = tox>=4
|
|
env_list = lint, py{39,310,311,312}
|
|
|
|
[testenv]
|
|
description = run unit tests
|
|
commands = python -m unittest
|
|
|
|
[testenv:lint]
|
|
description = run linters
|
|
skip_install = true
|
|
deps =
|
|
flake8
|
|
flake8-commas
|
|
isort
|
|
commands =
|
|
flake8
|
|
isort --check --diff .
|