中文字幕在线观看,亚洲а∨天堂久久精品9966,亚洲成a人片在线观看你懂的,亚洲av成人片无码网站,亚洲国产精品无码久久久五月天

Kiwi TCMS 5.0 發(fā)布,全功能測(cè)試用例管理系統(tǒng)

2018-07-25    來(lái)源:oschina

容器云強(qiáng)勢(shì)上線!快速搭建集群,上萬(wàn)Linux鏡像隨意使用

Kiwi TCMS 5.0 發(fā)布了,Kiwi TCMS 是一個(gè)集測(cè)試計(jì)劃、測(cè)試運(yùn)行和測(cè)試用例于一身的管理系統(tǒng),用 Python 和 Django 編寫(xiě)。它具有許多強(qiáng)大的功能,如 Bugzilla 和 JIRA 集成,快速測(cè)試計(jì)劃和運(yùn)行搜索,針對(duì)每個(gè)計(jì)劃、運(yùn)行和案例以及 XML-RPC API 的強(qiáng)大訪問(wèn)控制。

此次更新引入了新的數(shù)據(jù)庫(kù)遷移、對(duì)象歷史記錄跟蹤、舊功能和未使用代碼的刪除,以及大量?jī)?nèi)部更新和 bug 修復(fù):

Settings

  • Remove CACHE because not used

  • Remove PLAN_EMAIL_TEMPLATECASE_EMAIL_TEMPLATE and CASE_DELETE_EMAIL_TEMPLATE. Templates can still be overriden if desired

Enhancements

  • Upgrade to Django 2.0.7

  • Allow to delete TestPlan. Fixes Issue #273

  • Don't include username in dashboard URL

  • Copy latest TestPlan text when cloning

  • Always require users to be logged in. Anonymous users will not be allowed access by default. Read-only access to some views (e.g. get TestPlan or TestRun) can be enabled by disabling GlobalLoginRequiredMiddleware! Fixes Issue #230

  • Start tracking change history for TestPlan, TestCase, TestRun and TestCaseRun. Fixes Issue #294

  • History changes are recorded as unified diff which is a universally recognized format

  • Show the actual changes in email notifications. Fixes Issue #199

Bug fixes

  • Fix UnboundLocalError local variable 'message' referenced before assignment. Fixes Sentry KIWI-TCMS-1S

  • Make email address unique when adding users via admin panel. Fixes Issue #352 and Issue #68

  • Fix unsupported operand type(s) for +=: 'int' and 'datetime.timedelta' by initializing timedelta variable properly. Fixes Sentry KIWI-TCMS-1Y

  • Remove core.models.fields with MySQL time conversions. Fixes Issue #390

  • Fix bad JavaScript comparison. Fixes Coverity #289956

  • Remove expression with no effect. Fixes Coverity #289974

  • Rewrite request_host_link() to fix Coverity #289987

  • Fix Coverity #289923 - Typo in identifier

  • Don't send emails for changes performed by myself. Fixes Issue #216

Refactoring

  • Fix pylint issues in several modules (Anton Sankov & Ivaylo Ivanov)

  • Fix wrong Plan Type template variable in advanced search form

  • Do not use Model.objects.update() because it doesn't respect history

  • Use the standard ModelChoiceField instead of custom one

  • Use updateRunStatus() instead of deprecated updateObject()

  • Simplify JavaScript function getInfo() and use it multiple times

  • Simplify previewPlan() by removing unused parameters

  • Unify addChildPlan() and removeChildPlan()

  • Unify getInfoAndUpdateObject() with changeCaseRunAssignee()

  • Unify onTestCaseStatusChange() with changeTestCaseStatus()

  • Convert TestCaseEmailSettings.cc_list to string field

  • Merge report/caseruns_table.html with reports/caseruns.html

  • Rename model UserActivateKey to UserActivationKey. Fixes Issue #276

  • Remove cached_entities(). Fixes Issue #307

  • Remove TestPlanText.checksum field

  • Remove checksum fields for TestCaseText model

  • Remove unused and home-grown template tags

  • Remove unused fields auto_blinddowndescriptionsortkey from TestCaseRunStatus model. Fixes Issue #186

  • Remove Meta.db_name effectively renaming all tables. New names will use Django's default naming scheme

  • Remove RawSQL queries. We are now 100% ORM based. Fixes Issue #36

  • Remove duplicate MultipleEmailField definition

  • Remove TCMSLog view, TCMSLogManagerTCMSLogModel

  • Remove TestPlanText model, use TestPlan.text instead

  • Remove unused JavaScript files - lib/detetmine_type.js - lib/hole.js - lib/scriptaculous-controls.js.patch - lib/validations.js - static/js/index.js

  • Remove constructPlanParentPreviewDialog()

  • Remove changeCasePriority()

  • Remove changeCaseRunOrder()

  • Remove debug_output() from JavaScript files

  • Remove deprecated /ajax/update/ end-point

  • Remove taggleSortCaseRun()

  • Remove strip_parameters()

  • Remove _InfoObjects.users()

  • Remove get_value_by_type()

  • Remove testcases.views.get_log()

  • Remove mail_scene() methods and related templates

Removed functionality

  • TestRun completion status is no longer updated automatically. You can still update the status manually via the 'Set Finished' or 'Set Running' links! Fixes Issue #367

  • Remove bookmarks functionality. There are many great bookmark manager apps and if the user is keen on bookmarks they should use one of them. Closes Issue #67 and Issue #210

  • Don't track & display history of changes for EnvGroup model

  • Remove Disable/Enable buttons from TestPlan page. Enabling and disabling can still be done via the edit page

  • Remove changeParentPlan() and the ability to change TestPlan parents from the 'Tree View' tab. This can be done via the edit page

  • When viewing a TestPlan the user is no longer able to specify a sorkey for a particular TestCase. Instead they can use the Re-order cases button and move around the entire row of cases to adjust the sort order

  • When working with test case results, inside a TestRun you will not be allowed to change the order of execution. Order should be defined inside the TestPlan instead

  • Remove XmlRpcLog() model. Kiwi TCMS will no longer log RPC calls to the database. This leads to a small performance boost and can be overriden on individual basis if you need to do so.

Translations

  • More source strings marked as translatable

  • New translations for Chinese Simplified, Chinese Traditional, German and Slovenian

  • Stop keeping compiled translations under git. Fixes Issue #387

tcms-api 5.0 

  • Requires Python 3.6 or newer because it fixes bugs related to Django's disabling of keep-alive connections. See https://bugs.python.org/issue26402

  • The rpc client is now accessed via TCMS().exec.<Server-Method>

  • Leave only XML-RPC transport classes! This removes the top-level interface behind the API client and the consuming side is left to work with Python dictionaries instead of objects.

  • Remove the interactive tcms script

  • Remove tcms_api.config module

  • Remove logging class

  • Remove script_examples/ directory. These were never tested and maintained

詳情見(jiàn)更新日志。

下載地址:

  •  Source code (zip)

  •  Source code (tar.gz)

標(biāo)簽: isp Mysql 代碼 數(shù)據(jù)庫(kù) 搜索

版權(quán)申明:本站文章部分自網(wǎng)絡(luò),如有侵權(quán),請(qǐng)聯(lián)系:west999com@outlook.com
特別注意:本站所有轉(zhuǎn)載文章言論不代表本站觀點(diǎn)!
本站所提供的圖片等素材,版權(quán)歸原作者所有,如需使用,請(qǐng)與原作者聯(lián)系。

上一篇:Proxy-Go 全平臺(tái) SDK v5.3 發(fā)布,新增日志回調(diào)

下一篇:Ionic 4.0.0-alpha.12 發(fā)布,HTML5 移動(dòng)應(yīng)用框架