├── .flake8 ├── .gitignore ├── .style.yapf ├── LICENSE ├── README.md ├── examples ├── api_client.py └── multishoot │ ├── phout_aggregator.py │ ├── tankapiclient.py │ └── test1.py ├── requirements.txt ├── scripts └── yandex-tank-api-server ├── setup.py └── yandex_tank_api ├── __init__.py ├── common.py ├── manager.py ├── static ├── css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ └── custom.css ├── favicon.ico ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff └── js │ ├── manager.coffee │ ├── manager.js │ └── vendor │ ├── ace │ ├── ace.js │ ├── mode-ini.js │ └── ui-ace.js │ ├── angular.js │ ├── bootstrap.js │ ├── jquery.js │ ├── ui-bootstrap-tpls.js │ └── underscore.js ├── templates └── manager.jade ├── webserver.py └── worker.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-load/yandex-tank-api/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-load/yandex-tank-api/HEAD/.gitignore -------------------------------------------------------------------------------- /.style.yapf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-load/yandex-tank-api/HEAD/.style.yapf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-load/yandex-tank-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-load/yandex-tank-api/HEAD/README.md -------------------------------------------------------------------------------- /examples/api_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-load/yandex-tank-api/HEAD/examples/api_client.py -------------------------------------------------------------------------------- /examples/multishoot/phout_aggregator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-load/yandex-tank-api/HEAD/examples/multishoot/phout_aggregator.py -------------------------------------------------------------------------------- /examples/multishoot/tankapiclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-load/yandex-tank-api/HEAD/examples/multishoot/tankapiclient.py -------------------------------------------------------------------------------- /examples/multishoot/test1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-load/yandex-tank-api/HEAD/examples/multishoot/test1.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | tornado==5.1.1 2 | yandextank>=1.11 -------------------------------------------------------------------------------- /scripts/yandex-tank-api-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-load/yandex-tank-api/HEAD/scripts/yandex-tank-api-server -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-load/yandex-tank-api/HEAD/setup.py -------------------------------------------------------------------------------- /yandex_tank_api/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '19.09.1' 2 | -------------------------------------------------------------------------------- /yandex_tank_api/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-load/yandex-tank-api/HEAD/yandex_tank_api/common.py -------------------------------------------------------------------------------- /yandex_tank_api/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-load/yandex-tank-api/HEAD/yandex_tank_api/manager.py -------------------------------------------------------------------------------- /yandex_tank_api/static/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-load/yandex-tank-api/HEAD/yandex_tank_api/static/css/bootstrap-theme.css -------------------------------------------------------------------------------- /yandex_tank_api/static/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-load/yandex-tank-api/HEAD/yandex_tank_api/static/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /yandex_tank_api/static/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-load/yandex-tank-api/HEAD/yandex_tank_api/static/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /yandex_tank_api/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-load/yandex-tank-api/HEAD/yandex_tank_api/static/css/bootstrap.css -------------------------------------------------------------------------------- /yandex_tank_api/static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-load/yandex-tank-api/HEAD/yandex_tank_api/static/css/bootstrap.css.map -------------------------------------------------------------------------------- /yandex_tank_api/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-load/yandex-tank-api/HEAD/yandex_tank_api/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /yandex_tank_api/static/css/custom.css: -------------------------------------------------------------------------------- 1 | .ace_editor { height: 200px; } 2 | -------------------------------------------------------------------------------- /yandex_tank_api/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-load/yandex-tank-api/HEAD/yandex_tank_api/static/favicon.ico -------------------------------------------------------------------------------- /yandex_tank_api/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-load/yandex-tank-api/HEAD/yandex_tank_api/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /yandex_tank_api/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-load/yandex-tank-api/HEAD/yandex_tank_api/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /yandex_tank_api/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-load/yandex-tank-api/HEAD/yandex_tank_api/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /yandex_tank_api/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-load/yandex-tank-api/HEAD/yandex_tank_api/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /yandex_tank_api/static/js/manager.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-load/yandex-tank-api/HEAD/yandex_tank_api/static/js/manager.coffee -------------------------------------------------------------------------------- /yandex_tank_api/static/js/manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-load/yandex-tank-api/HEAD/yandex_tank_api/static/js/manager.js -------------------------------------------------------------------------------- /yandex_tank_api/static/js/vendor/ace/ace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-load/yandex-tank-api/HEAD/yandex_tank_api/static/js/vendor/ace/ace.js -------------------------------------------------------------------------------- /yandex_tank_api/static/js/vendor/ace/mode-ini.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-load/yandex-tank-api/HEAD/yandex_tank_api/static/js/vendor/ace/mode-ini.js -------------------------------------------------------------------------------- /yandex_tank_api/static/js/vendor/ace/ui-ace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-load/yandex-tank-api/HEAD/yandex_tank_api/static/js/vendor/ace/ui-ace.js -------------------------------------------------------------------------------- /yandex_tank_api/static/js/vendor/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-load/yandex-tank-api/HEAD/yandex_tank_api/static/js/vendor/angular.js -------------------------------------------------------------------------------- /yandex_tank_api/static/js/vendor/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-load/yandex-tank-api/HEAD/yandex_tank_api/static/js/vendor/bootstrap.js -------------------------------------------------------------------------------- /yandex_tank_api/static/js/vendor/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-load/yandex-tank-api/HEAD/yandex_tank_api/static/js/vendor/jquery.js -------------------------------------------------------------------------------- /yandex_tank_api/static/js/vendor/ui-bootstrap-tpls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-load/yandex-tank-api/HEAD/yandex_tank_api/static/js/vendor/ui-bootstrap-tpls.js -------------------------------------------------------------------------------- /yandex_tank_api/static/js/vendor/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-load/yandex-tank-api/HEAD/yandex_tank_api/static/js/vendor/underscore.js -------------------------------------------------------------------------------- /yandex_tank_api/templates/manager.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-load/yandex-tank-api/HEAD/yandex_tank_api/templates/manager.jade -------------------------------------------------------------------------------- /yandex_tank_api/webserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-load/yandex-tank-api/HEAD/yandex_tank_api/webserver.py -------------------------------------------------------------------------------- /yandex_tank_api/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-load/yandex-tank-api/HEAD/yandex_tank_api/worker.py --------------------------------------------------------------------------------