├── .editorconfig ├── .github └── workflows │ ├── python-package.yml │ └── python-publish.yml ├── .gitignore ├── LICENSE ├── Pipfile ├── README.md ├── ruff.toml ├── setup.cfg ├── setup.py ├── testrail_api ├── __init__.py ├── _category.py ├── _enums.py ├── _exception.py ├── _session.py └── _testrail_api.py └── tests ├── attach.jpg ├── conftest.py ├── pytest.ini ├── test_attachments.py ├── test_case_fields.py ├── test_case_types.py ├── test_cases.py ├── test_configurations.py ├── test_datasets.py ├── test_groups.py ├── test_milestone.py ├── test_other.py ├── test_plans.py ├── test_priorities.py ├── test_projects.py ├── test_reports.py ├── test_result_fields.py ├── test_results.py ├── test_roles.py ├── test_runs.py ├── test_sections.py ├── test_shared_steps.py ├── test_statuses.py ├── test_suites.py ├── test_template.py ├── test_tests.py ├── test_users.py └── test_variables.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolstislon/testrail-api/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolstislon/testrail-api/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolstislon/testrail-api/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolstislon/testrail-api/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolstislon/testrail-api/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolstislon/testrail-api/HEAD/Pipfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolstislon/testrail-api/HEAD/README.md -------------------------------------------------------------------------------- /ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolstislon/testrail-api/HEAD/ruff.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [coverage:run] 2 | omit = testrail_api/__version__.py 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolstislon/testrail-api/HEAD/setup.py -------------------------------------------------------------------------------- /testrail_api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolstislon/testrail-api/HEAD/testrail_api/__init__.py -------------------------------------------------------------------------------- /testrail_api/_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolstislon/testrail-api/HEAD/testrail_api/_category.py -------------------------------------------------------------------------------- /testrail_api/_enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolstislon/testrail-api/HEAD/testrail_api/_enums.py -------------------------------------------------------------------------------- /testrail_api/_exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolstislon/testrail-api/HEAD/testrail_api/_exception.py -------------------------------------------------------------------------------- /testrail_api/_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolstislon/testrail-api/HEAD/testrail_api/_session.py -------------------------------------------------------------------------------- /testrail_api/_testrail_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolstislon/testrail-api/HEAD/testrail_api/_testrail_api.py -------------------------------------------------------------------------------- /tests/attach.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolstislon/testrail-api/HEAD/tests/attach.jpg -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolstislon/testrail-api/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolstislon/testrail-api/HEAD/tests/pytest.ini -------------------------------------------------------------------------------- /tests/test_attachments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolstislon/testrail-api/HEAD/tests/test_attachments.py -------------------------------------------------------------------------------- /tests/test_case_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolstislon/testrail-api/HEAD/tests/test_case_fields.py -------------------------------------------------------------------------------- /tests/test_case_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolstislon/testrail-api/HEAD/tests/test_case_types.py -------------------------------------------------------------------------------- /tests/test_cases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolstislon/testrail-api/HEAD/tests/test_cases.py -------------------------------------------------------------------------------- /tests/test_configurations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolstislon/testrail-api/HEAD/tests/test_configurations.py -------------------------------------------------------------------------------- /tests/test_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolstislon/testrail-api/HEAD/tests/test_datasets.py -------------------------------------------------------------------------------- /tests/test_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolstislon/testrail-api/HEAD/tests/test_groups.py -------------------------------------------------------------------------------- /tests/test_milestone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolstislon/testrail-api/HEAD/tests/test_milestone.py -------------------------------------------------------------------------------- /tests/test_other.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolstislon/testrail-api/HEAD/tests/test_other.py -------------------------------------------------------------------------------- /tests/test_plans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolstislon/testrail-api/HEAD/tests/test_plans.py -------------------------------------------------------------------------------- /tests/test_priorities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolstislon/testrail-api/HEAD/tests/test_priorities.py -------------------------------------------------------------------------------- /tests/test_projects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolstislon/testrail-api/HEAD/tests/test_projects.py -------------------------------------------------------------------------------- /tests/test_reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolstislon/testrail-api/HEAD/tests/test_reports.py -------------------------------------------------------------------------------- /tests/test_result_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolstislon/testrail-api/HEAD/tests/test_result_fields.py -------------------------------------------------------------------------------- /tests/test_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolstislon/testrail-api/HEAD/tests/test_results.py -------------------------------------------------------------------------------- /tests/test_roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolstislon/testrail-api/HEAD/tests/test_roles.py -------------------------------------------------------------------------------- /tests/test_runs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolstislon/testrail-api/HEAD/tests/test_runs.py -------------------------------------------------------------------------------- /tests/test_sections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolstislon/testrail-api/HEAD/tests/test_sections.py -------------------------------------------------------------------------------- /tests/test_shared_steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolstislon/testrail-api/HEAD/tests/test_shared_steps.py -------------------------------------------------------------------------------- /tests/test_statuses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolstislon/testrail-api/HEAD/tests/test_statuses.py -------------------------------------------------------------------------------- /tests/test_suites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolstislon/testrail-api/HEAD/tests/test_suites.py -------------------------------------------------------------------------------- /tests/test_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolstislon/testrail-api/HEAD/tests/test_template.py -------------------------------------------------------------------------------- /tests/test_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolstislon/testrail-api/HEAD/tests/test_tests.py -------------------------------------------------------------------------------- /tests/test_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolstislon/testrail-api/HEAD/tests/test_users.py -------------------------------------------------------------------------------- /tests/test_variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolstislon/testrail-api/HEAD/tests/test_variables.py --------------------------------------------------------------------------------