-
-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathrequirements-dev.txt
More file actions
20 lines (18 loc) · 686 Bytes
/
Copy pathrequirements-dev.txt
File metadata and controls
20 lines (18 loc) · 686 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Development and test dependencies for sshPilot.
#
# Install inside the venv created per the README "Run from Source" guide:
# pip install -r requirements-dev.txt
#
# This pulls in the runtime dependencies plus the tooling CI uses for tests and
# linting. As with requirements.txt, PyGObject/pycairo are NOT listed here —
# they come from system packages (see README).
-r requirements.txt
# Tests (CI runs: pytest -ra -m "not integration")
pytest>=7.0
pytest-cov
jsonschema
# Test-only: test_combined_auth.py uses paramiko as a mock SSH server to
# validate the native auth path; not a runtime dependency.
paramiko>=3.4
# Lint (pinned to match the CI Ruff version)
ruff==0.15.17