我正在尝试在qpython中使用doctest。但是脚本没有用,在PC环境中它没问题。
与我在PC环境中的脚本只有两行不同: 进口sl4a droid = sl4a.Android()
在qpython中运行脚本后,我可以看到docctest的日志,但是测试用例似乎没有经过测试。我得到的消息是: 11项没有测试: ... 在11项中进行0次测试。 0过去了0失败了。 测试通过了
我错过了什么重要的事情吗? 谢谢你的帮助!
答案 0 :(得分:1)
那是因为qpython在(-OO)上运行了带有优化功能的python,这删除了文档字符串,因此doctest什么也看不到。 以下技巧可为您提供几乎所有功能。 基本上,它只是使用ast模块解析源文件以获取文档字符串,然后将其放入__test__字典中。
def setupDoctest():
global __test__
import ast
__test__ = {}
parsed = ast.parse(open(__file__).read(), "doctest")
doctypes = ast.Module, ast.FunctionDef, ast.ClassDef
for node in ast.walk(parsed):
if isinstance(node, doctypes):
d = ast.get_docstring(node, True)
if d:
__test__[getattr(node, "name", "module")] = d
只需在调用doctest.testmod之前先调用它,它将运行文档字符串。
答案 1 :(得分:0)
也许您找到了解决方案,但是前几天我在QPython上也有类似的经历。似乎您还不能在QPython的控制台中使用Player或Pyjnius。作为Kivy应用程序运行脚本,可以导入Plyer或Pyjnius。尝试添加以下行:
$(function () {
// init the validator
// validator files are included in the download package
// otherwise download from http://1000hz.github.io/bootstrap-validator
$('#contact-form').validator();
// when the form is submitted
$('#contact-form').on('submit', function (e) {
// if the validator does not prevent form submit
if (!e.isDefaultPrevented()) {
var url = "contact-2.php";
// POST values in the background the the script URL
$.ajax({
type: "POST",
url: url,
data: $(this).serialize(),
success: function (data)
{
// data = JSON object that contact.php returns
// we recieve the type of the message: success x danger and
apply it to the
var messageAlert = 'alert-' + data.type;
var messageText = data.message;
// let's compose Bootstrap alert box HTML
var alertBox = '<div class="alert ' + messageAlert + ' alert-
dismissable"><button type="button" class="close" data-dismiss="alert" aria-
hidden="true">×</button>' + messageText + '</div>';
// If we have messageAlert and messageText
if (messageAlert && messageText) {
// inject the alert to .messages div in our form
$('#contact-form').find('.messages').html(alertBox);
// empty the form
$('#contact-form')[0].reset();
}
}
});
return false;
}
})
});