diff options
author | Nilashish Chakraborty <nilashishchakraborty8@gmail.com> | 2024-06-12 21:52:29 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-12 21:52:29 +0530 |
commit | 93d8d12d114cf26bb4714c026953f0012c1e3df5 (patch) | |
tree | b734a0242baef24347afd3fcb55d4b4c75c12f27 /tox.ini | |
parent | 21e3948bddf9dd39339bda6a8d655919a5ee8ca6 (diff) | |
download | vyos.vyos-93d8d12d114cf26bb4714c026953f0012c1e3df5.tar.gz vyos.vyos-93d8d12d114cf26bb4714c026953f0012c1e3df5.zip |
Add deprecation notice in README (#347)
* Add deprecation notice in README
Signed-off-by: NilashishC <nilashishchakraborty8@gmail.com>
* Remove tox.ini
Signed-off-by: NilashishC <nilashishchakraborty8@gmail.com>
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
---------
Signed-off-by: NilashishC <nilashishchakraborty8@gmail.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/tox.ini b/tox.ini deleted file mode 100644 index 6bd8489..0000000 --- a/tox.ini +++ /dev/null @@ -1,32 +0,0 @@ -[tox] -minversion = 1.4.2 -envlist = linters -skipsdist = True - -[testenv] -deps = -r{toxinidir}/requirements.txt - -r{toxinidir}/test-requirements.txt - -[testenv:black] -install_command = pip install {opts} {packages} -commands = - black --exclude '\.git|\.mypy_cache|\.tox|tests/output' {toxinidir} - -[testenv:linters] -install_command = pip install {opts} {packages} -commands = - black --exclude '\.git|\.mypy_cache|\.tox|tests/output' --check {toxinidir} - flake8 {posargs} - yamllint -s . - -[testenv:venv] -commands = {posargs} - -[flake8] -# E123, E125 skipped as they are invalid PEP-8. - -show-source = True -ignore = E123,E125,E402,W503,W504 -max-line-length = 160 -builtins = _ -exclude = .git,.tox,tests/unit/compat/ |