Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ Bug Fixes
Internal
---------
* Collect CLI arguments into a dataclass.
* Clean up generate files after test runs.
* Clean up generated files after test runs.
* Migrate toplevel tool configurations to `pyproject.toml`.


1.66.0 (2026/03/21)
Expand Down
28 changes: 28 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -120,3 +120,31 @@ warn_no_return = true
warn_unused_configs = true
show_column_numbers = true
exclude = ['^build/', '^dist/']

[tool.tox]
env_list = ['python']
requires = ['tox>=4.20']

[tool.tox.env_run_base]
skip_install = true
deps = ['uv']
passenv = ['PYTEST_HOST',
'PYTEST_USER',
'PYTEST_PASSWORD',
'PYTEST_PORT',
'PYTEST_CHARSET']
commands = [['uv', 'pip', 'install', '-e', '.[dev,ssh,llm]'],
['coverage', 'run', '-m', 'pytest', '-v', 'test'],
['coverage', 'report', '-m'],
['behave', 'test/features']]
commands_post = [['rm', '-f', '--', './.myclirc']]
allowlist_externals = ['rm']

[tool.tox.env.style]
skip_install = true
deps = ['ruff']
commands = [['ruff', 'check'],
['ruff', 'format', '--diff']]

[tool.pytest]
addopts = ['--ignore=mycli/packages/paramiko_stub/__init__.py']
2 changes: 0 additions & 2 deletions pytest.ini

This file was deleted.

23 changes: 0 additions & 23 deletions tox.ini

This file was deleted.

Loading