format all lua files
This commit is contained in:
@ -7,13 +7,13 @@ return {
|
||||
'nvim-neotest/neotest-python'
|
||||
},
|
||||
config = function()
|
||||
require("neotest").setup({
|
||||
require('neotest').setup({
|
||||
adapters = {
|
||||
require("neotest-python")({
|
||||
require('neotest-python')({
|
||||
dap = {
|
||||
justMyCode = false
|
||||
},
|
||||
args = { "--log-level", "DEBUG" },
|
||||
args = { '--log-level', 'DEBUG' },
|
||||
runner = 'pytest',
|
||||
})
|
||||
}
|
||||
@ -23,14 +23,14 @@ return {
|
||||
{
|
||||
'<F3>',
|
||||
function()
|
||||
require("neotest").run.run()
|
||||
require('neotest').run.run()
|
||||
end,
|
||||
desc = 'Run nearest test'
|
||||
},
|
||||
{
|
||||
'<S-F3>',
|
||||
function()
|
||||
require("neotest").run.run({ strategy = "dap" })
|
||||
require('neotest').run.run({ strategy = 'dap' })
|
||||
end,
|
||||
desc = 'Run nearest test'
|
||||
}
|
||||
|
Reference in New Issue
Block a user