尽管安装了插件,我似乎无法使用Nose进行代码覆盖。
有关如何解决此问题的任何想法?
12:15:25 ~/sandbox/ec$ nosetests --plugins
Plugin xunit
Plugin deprecated
Plugin skip
Plugin multiprocess
Plugin failuredetail
Plugin capture
Plugin logcapture
Plugin coverage
Plugin attributeselector
Plugin doctest
Plugin profile
Plugin id
Plugin allmodules
Plugin collect-only
Plugin isolation
Plugin pdb
12:15:34 ~/sandbox/ec$ nosetests -v --with-coverage
nose.plugins.cover: ERROR: Coverage not available: unable to import coverage module
tests.edgecast_client_tests.test_log ... ok
----------------------------------------------------------------------
Ran 1 test in 0.206s
OK
答案 0 :(得分:84)
你试过pip install coverage
吗? coverage插件依赖于单独的coverage模块,这不是鼻子的依赖,因此需要手动安装。
答案 1 :(得分:0)
通过 var express=require('express');
var app=express();
app.use(express.json());
app.post('/api', function(req,res){
res.json(req.body);
})
app.listen(9000);
验证覆盖模块是否自行工作。我有一个案例,由于我的 python 安装中缺少 SQLite 模块,因此它无法正常工作。我用 SQLite 扩展重新安装了 python 来解决这个问题。