├── .mapping.json ├── .piglet-meta.json ├── .travis.yml ├── AUTHORS ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.rst ├── changelog ├── docker-compose.yaml ├── pytest.ini ├── run_tests.sh ├── setup.py ├── tests ├── common │ ├── __init__.py │ ├── backend_responses │ │ └── fields.json │ ├── bulkchange.py │ ├── config.py │ ├── entities.py │ ├── field_categories.py │ ├── issues.py │ ├── mock.py │ ├── queues.py │ ├── tracker.py │ ├── url.py │ └── utils │ │ ├── __init__.py │ │ └── comments.py ├── conftest.py └── smoke │ ├── __init__.py │ ├── conftest.py │ ├── entities │ ├── __init__.py │ ├── test_entities_attach.py │ ├── test_entities_checklists.py │ ├── test_entities_comments.py │ ├── test_entities_general.py │ ├── test_entities_links.py │ └── test_entities_search.py │ ├── issues │ ├── __init__.py │ ├── test_issues_comments.py │ ├── test_issues_general.py │ ├── test_issues_links.py │ ├── test_issues_search.py │ └── test_issues_transition.py │ ├── test_attachments.py │ ├── test_bulkchange.py │ ├── test_collections.py │ ├── test_connection.py │ ├── test_field_categories.py │ ├── test_queues.py │ └── test_versions.py ├── tox.ini └── yandex_tracker_client ├── __init__.py ├── client.py ├── collections.py ├── connection.py ├── exceptions.py ├── objects.py ├── settings.py └── uriutils.py /.mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yandex_tracker_client/HEAD/.mapping.json -------------------------------------------------------------------------------- /.piglet-meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yandex_tracker_client/HEAD/.piglet-meta.json -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yandex_tracker_client/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yandex_tracker_client/HEAD/AUTHORS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yandex_tracker_client/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM themattrix/tox 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yandex_tracker_client/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yandex_tracker_client/HEAD/README.rst -------------------------------------------------------------------------------- /changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yandex_tracker_client/HEAD/changelog -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yandex_tracker_client/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | norecursedirs=.robe debian build .tox 3 | -------------------------------------------------------------------------------- /run_tests.sh: -------------------------------------------------------------------------------- 1 | docker-compose run tox 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yandex_tracker_client/HEAD/setup.py -------------------------------------------------------------------------------- /tests/common/__init__.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | -------------------------------------------------------------------------------- /tests/common/backend_responses/fields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yandex_tracker_client/HEAD/tests/common/backend_responses/fields.json -------------------------------------------------------------------------------- /tests/common/bulkchange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yandex_tracker_client/HEAD/tests/common/bulkchange.py -------------------------------------------------------------------------------- /tests/common/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yandex_tracker_client/HEAD/tests/common/config.py -------------------------------------------------------------------------------- /tests/common/entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yandex_tracker_client/HEAD/tests/common/entities.py -------------------------------------------------------------------------------- /tests/common/field_categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yandex_tracker_client/HEAD/tests/common/field_categories.py -------------------------------------------------------------------------------- /tests/common/issues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yandex_tracker_client/HEAD/tests/common/issues.py -------------------------------------------------------------------------------- /tests/common/mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yandex_tracker_client/HEAD/tests/common/mock.py -------------------------------------------------------------------------------- /tests/common/queues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yandex_tracker_client/HEAD/tests/common/queues.py -------------------------------------------------------------------------------- /tests/common/tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yandex_tracker_client/HEAD/tests/common/tracker.py -------------------------------------------------------------------------------- /tests/common/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yandex_tracker_client/HEAD/tests/common/url.py -------------------------------------------------------------------------------- /tests/common/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/common/utils/comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yandex_tracker_client/HEAD/tests/common/utils/comments.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yandex_tracker_client/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/smoke/__init__.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | -------------------------------------------------------------------------------- /tests/smoke/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yandex_tracker_client/HEAD/tests/smoke/conftest.py -------------------------------------------------------------------------------- /tests/smoke/entities/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/smoke/entities/test_entities_attach.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yandex_tracker_client/HEAD/tests/smoke/entities/test_entities_attach.py -------------------------------------------------------------------------------- /tests/smoke/entities/test_entities_checklists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yandex_tracker_client/HEAD/tests/smoke/entities/test_entities_checklists.py -------------------------------------------------------------------------------- /tests/smoke/entities/test_entities_comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yandex_tracker_client/HEAD/tests/smoke/entities/test_entities_comments.py -------------------------------------------------------------------------------- /tests/smoke/entities/test_entities_general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yandex_tracker_client/HEAD/tests/smoke/entities/test_entities_general.py -------------------------------------------------------------------------------- /tests/smoke/entities/test_entities_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yandex_tracker_client/HEAD/tests/smoke/entities/test_entities_links.py -------------------------------------------------------------------------------- /tests/smoke/entities/test_entities_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yandex_tracker_client/HEAD/tests/smoke/entities/test_entities_search.py -------------------------------------------------------------------------------- /tests/smoke/issues/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/smoke/issues/test_issues_comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yandex_tracker_client/HEAD/tests/smoke/issues/test_issues_comments.py -------------------------------------------------------------------------------- /tests/smoke/issues/test_issues_general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yandex_tracker_client/HEAD/tests/smoke/issues/test_issues_general.py -------------------------------------------------------------------------------- /tests/smoke/issues/test_issues_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yandex_tracker_client/HEAD/tests/smoke/issues/test_issues_links.py -------------------------------------------------------------------------------- /tests/smoke/issues/test_issues_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yandex_tracker_client/HEAD/tests/smoke/issues/test_issues_search.py -------------------------------------------------------------------------------- /tests/smoke/issues/test_issues_transition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yandex_tracker_client/HEAD/tests/smoke/issues/test_issues_transition.py -------------------------------------------------------------------------------- /tests/smoke/test_attachments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yandex_tracker_client/HEAD/tests/smoke/test_attachments.py -------------------------------------------------------------------------------- /tests/smoke/test_bulkchange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yandex_tracker_client/HEAD/tests/smoke/test_bulkchange.py -------------------------------------------------------------------------------- /tests/smoke/test_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yandex_tracker_client/HEAD/tests/smoke/test_collections.py -------------------------------------------------------------------------------- /tests/smoke/test_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yandex_tracker_client/HEAD/tests/smoke/test_connection.py -------------------------------------------------------------------------------- /tests/smoke/test_field_categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yandex_tracker_client/HEAD/tests/smoke/test_field_categories.py -------------------------------------------------------------------------------- /tests/smoke/test_queues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yandex_tracker_client/HEAD/tests/smoke/test_queues.py -------------------------------------------------------------------------------- /tests/smoke/test_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yandex_tracker_client/HEAD/tests/smoke/test_versions.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yandex_tracker_client/HEAD/tox.ini -------------------------------------------------------------------------------- /yandex_tracker_client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yandex_tracker_client/HEAD/yandex_tracker_client/__init__.py -------------------------------------------------------------------------------- /yandex_tracker_client/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yandex_tracker_client/HEAD/yandex_tracker_client/client.py -------------------------------------------------------------------------------- /yandex_tracker_client/collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yandex_tracker_client/HEAD/yandex_tracker_client/collections.py -------------------------------------------------------------------------------- /yandex_tracker_client/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yandex_tracker_client/HEAD/yandex_tracker_client/connection.py -------------------------------------------------------------------------------- /yandex_tracker_client/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yandex_tracker_client/HEAD/yandex_tracker_client/exceptions.py -------------------------------------------------------------------------------- /yandex_tracker_client/objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yandex_tracker_client/HEAD/yandex_tracker_client/objects.py -------------------------------------------------------------------------------- /yandex_tracker_client/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yandex_tracker_client/HEAD/yandex_tracker_client/settings.py -------------------------------------------------------------------------------- /yandex_tracker_client/uriutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yandex_tracker_client/HEAD/yandex_tracker_client/uriutils.py --------------------------------------------------------------------------------