Remove non-existant test file

This commit is contained in:
Luke Murphy 2021-01-10 19:31:09 +01:00
parent 9dfffb3f56
commit 6167849884
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC

View File

@ -57,20 +57,20 @@ commands = pytest test.py --cov={toxinidir}/xbotlib.py --no-cov-on-fail {posargs
[testenv:lint]
skipdist = True
deps = flake8
commands = flake8 {posargs:--max-line-length 80} xbotlib.py test.py
commands = flake8 {posargs:--max-line-length 80} xbotlib.py
[testenv:sort]
skipdist = True
deps = isort
commands = isort {posargs:-c} xbotlib.py test.py
commands = isort {posargs:-c} xbotlib.py
[testenv:format]
skipdist = True
deps = black
commands = black {posargs:--check} xbotlib.py test.py
commands = black {posargs:--check} xbotlib.py
[testenv:type]
skipdist = True
deps = mypy
commands = mypy {posargs:--ignore-missing-imports} xbotlib.py test.py
commands = mypy {posargs:--ignore-missing-imports} xbotlib.py
"""