├── .coveragerc ├── .env ├── .gitignore ├── .travis.yml ├── LICENSE ├── Procfile ├── Procfile.dev ├── README.md ├── README_HEROKU.md ├── Vagrantfile ├── authentication ├── __init__.py ├── backend.py ├── serializers.py ├── tests.py └── views.py ├── cdws_api ├── __init__.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── import.py ├── migrations │ └── __init__.py ├── serializers.py ├── testdata │ ├── empty-test-report.xml │ ├── junit-test-report-notime.xml │ ├── junit-test-report.xml │ ├── nunit-test-report.xml │ ├── qttestxunit-test-report.xml │ └── xcprettyjunit-test-report.xml ├── tests.py ├── views.py └── xml_parser.py ├── comments ├── __init__.py ├── admin.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20141217_2314.py │ └── __init__.py └── models.py ├── common ├── __init__.py ├── admin.py ├── context_processors.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_settings.py │ └── __init__.py ├── models.py ├── storage.py ├── tasks.py └── templates │ ├── login.html │ └── logout.html ├── config.py ├── dev-requirements.txt ├── manage.py ├── metrics ├── __init__.py ├── admin.py ├── handlers.py ├── jira.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20150703_0937.py │ ├── 0003_auto_20150707_1622.py │ ├── 0004_metric_error.py │ ├── 0005_metric_weight.py │ ├── 0006_auto_20150727_1145.py │ └── __init__.py ├── models.py └── tasks.py ├── pycd ├── __init__.py ├── celery.py ├── disablecsrf.py ├── settings.py ├── urls.py └── wsgi.py ├── requirements.txt ├── run_coveralls.py ├── runtime.txt ├── stages ├── __init__.py ├── admin.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20150727_1145.py │ └── __init__.py └── models.py ├── test-requirements.txt ├── testreport ├── __init__.py ├── admin.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20141022_1358.py │ ├── 0003_auto_20141023_1423.py │ ├── 0004_auto_20141029_0900.py │ ├── 0005_auto_20141117_0734.py │ ├── 0006_auto_20141117_0737.py │ ├── 0007_auto_20141117_1052.py │ ├── 0008_auto_20141117_1348.py │ ├── 0009_auto_20141117_1517.py │ ├── 0010_auto_20141117_2134.py │ ├── 0011_auto_20141121_1306.py │ ├── 0012_auto_20141121_1307.py │ ├── 0013_auto_20141126_1308.py │ ├── 0014_auto_20141208_0930.py │ ├── 0015_auto_20141208_1330.py │ ├── 0016_auto_20141209_0734.py │ ├── 0017_auto_20141210_1646.py │ ├── 0018_auto_20141216_1834.py │ ├── 0019_auto_20141217_2133.py │ ├── 0020_auto_20141217_2134.py │ ├── 0021_auto_20141217_2314.py │ ├── 0022_auto_20141218_0830.py │ ├── 0023_auto_20141223_1300.py │ ├── 0024_auto_20150309_1013.py │ ├── 0025_auto_20150309_1149.py │ ├── 0026_testresult_launch_item_id.py │ ├── 0027_auto_20150527_1204.py │ ├── 0028_auto_20150613_1727.py │ ├── 0029_testplan_description.py │ ├── 0030_launch_duration.py │ ├── 0031_extuser.py │ ├── 0032_auto_20151023_1055.py │ ├── 0033_auto_20151110_0925.py │ ├── 0034_extuser_dashboards.py │ ├── 0035_testplan_summary.py │ ├── 0036_auto_20151218_1144.py │ ├── 0037_auto_20151223_1643.py │ ├── 0038_testplan_show_in_twodays.py │ ├── 0039_auto_20160120_1606.py │ ├── 0040_extuser_result_preview.py │ ├── 0041_build.py │ ├── 0042_add_xml_parser_user.py │ ├── 0043_auto_20160413_1040.py │ └── __init__.py ├── models.py ├── tasks.py ├── templates │ └── base.html ├── tests.py └── views.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- 1 | [report] 2 | omit = .tox/* 3 | -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/Procfile -------------------------------------------------------------------------------- /Procfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/Procfile.dev -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/README.md -------------------------------------------------------------------------------- /README_HEROKU.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/README_HEROKU.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/Vagrantfile -------------------------------------------------------------------------------- /authentication/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /authentication/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/authentication/backend.py -------------------------------------------------------------------------------- /authentication/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/authentication/serializers.py -------------------------------------------------------------------------------- /authentication/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/authentication/tests.py -------------------------------------------------------------------------------- /authentication/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/authentication/views.py -------------------------------------------------------------------------------- /cdws_api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cdws_api/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cdws_api/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cdws_api/management/commands/import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/cdws_api/management/commands/import.py -------------------------------------------------------------------------------- /cdws_api/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cdws_api/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/cdws_api/serializers.py -------------------------------------------------------------------------------- /cdws_api/testdata/empty-test-report.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cdws_api/testdata/junit-test-report-notime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/cdws_api/testdata/junit-test-report-notime.xml -------------------------------------------------------------------------------- /cdws_api/testdata/junit-test-report.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/cdws_api/testdata/junit-test-report.xml -------------------------------------------------------------------------------- /cdws_api/testdata/nunit-test-report.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/cdws_api/testdata/nunit-test-report.xml -------------------------------------------------------------------------------- /cdws_api/testdata/qttestxunit-test-report.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/cdws_api/testdata/qttestxunit-test-report.xml -------------------------------------------------------------------------------- /cdws_api/testdata/xcprettyjunit-test-report.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/cdws_api/testdata/xcprettyjunit-test-report.xml -------------------------------------------------------------------------------- /cdws_api/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/cdws_api/tests.py -------------------------------------------------------------------------------- /cdws_api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/cdws_api/views.py -------------------------------------------------------------------------------- /cdws_api/xml_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/cdws_api/xml_parser.py -------------------------------------------------------------------------------- /comments/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /comments/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/comments/admin.py -------------------------------------------------------------------------------- /comments/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/comments/migrations/0001_initial.py -------------------------------------------------------------------------------- /comments/migrations/0002_auto_20141217_2314.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/comments/migrations/0002_auto_20141217_2314.py -------------------------------------------------------------------------------- /comments/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /comments/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/comments/models.py -------------------------------------------------------------------------------- /common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/admin.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/common/context_processors.py -------------------------------------------------------------------------------- /common/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/common/migrations/0001_initial.py -------------------------------------------------------------------------------- /common/migrations/0002_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/common/migrations/0002_settings.py -------------------------------------------------------------------------------- /common/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/common/models.py -------------------------------------------------------------------------------- /common/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/common/storage.py -------------------------------------------------------------------------------- /common/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/common/tasks.py -------------------------------------------------------------------------------- /common/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/common/templates/login.html -------------------------------------------------------------------------------- /common/templates/logout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/common/templates/logout.html -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/config.py -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- 1 | honcho==0.6.6 2 | ipython 3 | -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/manage.py -------------------------------------------------------------------------------- /metrics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /metrics/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/metrics/admin.py -------------------------------------------------------------------------------- /metrics/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/metrics/handlers.py -------------------------------------------------------------------------------- /metrics/jira.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/metrics/jira.py -------------------------------------------------------------------------------- /metrics/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/metrics/migrations/0001_initial.py -------------------------------------------------------------------------------- /metrics/migrations/0002_auto_20150703_0937.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/metrics/migrations/0002_auto_20150703_0937.py -------------------------------------------------------------------------------- /metrics/migrations/0003_auto_20150707_1622.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/metrics/migrations/0003_auto_20150707_1622.py -------------------------------------------------------------------------------- /metrics/migrations/0004_metric_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/metrics/migrations/0004_metric_error.py -------------------------------------------------------------------------------- /metrics/migrations/0005_metric_weight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/metrics/migrations/0005_metric_weight.py -------------------------------------------------------------------------------- /metrics/migrations/0006_auto_20150727_1145.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/metrics/migrations/0006_auto_20150727_1145.py -------------------------------------------------------------------------------- /metrics/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /metrics/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/metrics/models.py -------------------------------------------------------------------------------- /metrics/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/metrics/tasks.py -------------------------------------------------------------------------------- /pycd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/pycd/__init__.py -------------------------------------------------------------------------------- /pycd/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/pycd/celery.py -------------------------------------------------------------------------------- /pycd/disablecsrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/pycd/disablecsrf.py -------------------------------------------------------------------------------- /pycd/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/pycd/settings.py -------------------------------------------------------------------------------- /pycd/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/pycd/urls.py -------------------------------------------------------------------------------- /pycd/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/pycd/wsgi.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_coveralls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/run_coveralls.py -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.4.3 2 | -------------------------------------------------------------------------------- /stages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stages/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/stages/admin.py -------------------------------------------------------------------------------- /stages/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/stages/migrations/0001_initial.py -------------------------------------------------------------------------------- /stages/migrations/0002_auto_20150727_1145.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/stages/migrations/0002_auto_20150727_1145.py -------------------------------------------------------------------------------- /stages/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stages/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/stages/models.py -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/test-requirements.txt -------------------------------------------------------------------------------- /testreport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testreport/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/testreport/admin.py -------------------------------------------------------------------------------- /testreport/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/testreport/migrations/0001_initial.py -------------------------------------------------------------------------------- /testreport/migrations/0002_auto_20141022_1358.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/testreport/migrations/0002_auto_20141022_1358.py -------------------------------------------------------------------------------- /testreport/migrations/0003_auto_20141023_1423.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/testreport/migrations/0003_auto_20141023_1423.py -------------------------------------------------------------------------------- /testreport/migrations/0004_auto_20141029_0900.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/testreport/migrations/0004_auto_20141029_0900.py -------------------------------------------------------------------------------- /testreport/migrations/0005_auto_20141117_0734.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/testreport/migrations/0005_auto_20141117_0734.py -------------------------------------------------------------------------------- /testreport/migrations/0006_auto_20141117_0737.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/testreport/migrations/0006_auto_20141117_0737.py -------------------------------------------------------------------------------- /testreport/migrations/0007_auto_20141117_1052.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/testreport/migrations/0007_auto_20141117_1052.py -------------------------------------------------------------------------------- /testreport/migrations/0008_auto_20141117_1348.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/testreport/migrations/0008_auto_20141117_1348.py -------------------------------------------------------------------------------- /testreport/migrations/0009_auto_20141117_1517.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/testreport/migrations/0009_auto_20141117_1517.py -------------------------------------------------------------------------------- /testreport/migrations/0010_auto_20141117_2134.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/testreport/migrations/0010_auto_20141117_2134.py -------------------------------------------------------------------------------- /testreport/migrations/0011_auto_20141121_1306.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/testreport/migrations/0011_auto_20141121_1306.py -------------------------------------------------------------------------------- /testreport/migrations/0012_auto_20141121_1307.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/testreport/migrations/0012_auto_20141121_1307.py -------------------------------------------------------------------------------- /testreport/migrations/0013_auto_20141126_1308.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/testreport/migrations/0013_auto_20141126_1308.py -------------------------------------------------------------------------------- /testreport/migrations/0014_auto_20141208_0930.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/testreport/migrations/0014_auto_20141208_0930.py -------------------------------------------------------------------------------- /testreport/migrations/0015_auto_20141208_1330.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/testreport/migrations/0015_auto_20141208_1330.py -------------------------------------------------------------------------------- /testreport/migrations/0016_auto_20141209_0734.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/testreport/migrations/0016_auto_20141209_0734.py -------------------------------------------------------------------------------- /testreport/migrations/0017_auto_20141210_1646.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/testreport/migrations/0017_auto_20141210_1646.py -------------------------------------------------------------------------------- /testreport/migrations/0018_auto_20141216_1834.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/testreport/migrations/0018_auto_20141216_1834.py -------------------------------------------------------------------------------- /testreport/migrations/0019_auto_20141217_2133.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/testreport/migrations/0019_auto_20141217_2133.py -------------------------------------------------------------------------------- /testreport/migrations/0020_auto_20141217_2134.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/testreport/migrations/0020_auto_20141217_2134.py -------------------------------------------------------------------------------- /testreport/migrations/0021_auto_20141217_2314.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/testreport/migrations/0021_auto_20141217_2314.py -------------------------------------------------------------------------------- /testreport/migrations/0022_auto_20141218_0830.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/testreport/migrations/0022_auto_20141218_0830.py -------------------------------------------------------------------------------- /testreport/migrations/0023_auto_20141223_1300.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/testreport/migrations/0023_auto_20141223_1300.py -------------------------------------------------------------------------------- /testreport/migrations/0024_auto_20150309_1013.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/testreport/migrations/0024_auto_20150309_1013.py -------------------------------------------------------------------------------- /testreport/migrations/0025_auto_20150309_1149.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/testreport/migrations/0025_auto_20150309_1149.py -------------------------------------------------------------------------------- /testreport/migrations/0026_testresult_launch_item_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/testreport/migrations/0026_testresult_launch_item_id.py -------------------------------------------------------------------------------- /testreport/migrations/0027_auto_20150527_1204.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/testreport/migrations/0027_auto_20150527_1204.py -------------------------------------------------------------------------------- /testreport/migrations/0028_auto_20150613_1727.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/testreport/migrations/0028_auto_20150613_1727.py -------------------------------------------------------------------------------- /testreport/migrations/0029_testplan_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/testreport/migrations/0029_testplan_description.py -------------------------------------------------------------------------------- /testreport/migrations/0030_launch_duration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/testreport/migrations/0030_launch_duration.py -------------------------------------------------------------------------------- /testreport/migrations/0031_extuser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/testreport/migrations/0031_extuser.py -------------------------------------------------------------------------------- /testreport/migrations/0032_auto_20151023_1055.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/testreport/migrations/0032_auto_20151023_1055.py -------------------------------------------------------------------------------- /testreport/migrations/0033_auto_20151110_0925.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/testreport/migrations/0033_auto_20151110_0925.py -------------------------------------------------------------------------------- /testreport/migrations/0034_extuser_dashboards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/testreport/migrations/0034_extuser_dashboards.py -------------------------------------------------------------------------------- /testreport/migrations/0035_testplan_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/testreport/migrations/0035_testplan_summary.py -------------------------------------------------------------------------------- /testreport/migrations/0036_auto_20151218_1144.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/testreport/migrations/0036_auto_20151218_1144.py -------------------------------------------------------------------------------- /testreport/migrations/0037_auto_20151223_1643.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/testreport/migrations/0037_auto_20151223_1643.py -------------------------------------------------------------------------------- /testreport/migrations/0038_testplan_show_in_twodays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/testreport/migrations/0038_testplan_show_in_twodays.py -------------------------------------------------------------------------------- /testreport/migrations/0039_auto_20160120_1606.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/testreport/migrations/0039_auto_20160120_1606.py -------------------------------------------------------------------------------- /testreport/migrations/0040_extuser_result_preview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/testreport/migrations/0040_extuser_result_preview.py -------------------------------------------------------------------------------- /testreport/migrations/0041_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/testreport/migrations/0041_build.py -------------------------------------------------------------------------------- /testreport/migrations/0042_add_xml_parser_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/testreport/migrations/0042_add_xml_parser_user.py -------------------------------------------------------------------------------- /testreport/migrations/0043_auto_20160413_1040.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/testreport/migrations/0043_auto_20160413_1040.py -------------------------------------------------------------------------------- /testreport/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testreport/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/testreport/models.py -------------------------------------------------------------------------------- /testreport/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/testreport/tasks.py -------------------------------------------------------------------------------- /testreport/templates/base.html: -------------------------------------------------------------------------------- 1 | CDWS API backend 2 | -------------------------------------------------------------------------------- /testreport/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/testreport/tests.py -------------------------------------------------------------------------------- /testreport/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/testreport/views.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/badger-api/HEAD/tox.ini --------------------------------------------------------------------------------