From 263b4f2b27574df412d827fa56a338b85af2ba7b Mon Sep 17 00:00:00 2001 From: Chris Sewell Date: Tue, 18 Jan 2022 11:45:04 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20FIX:=20`tool.coverage.run.source?= =?UTF-8?q?`=20config=20expects=20list?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Failed https://github.com/aiidateam/aiida-diff/pull/38 --- {{cookiecutter.plugin_name}}/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.plugin_name}}/pyproject.toml b/{{cookiecutter.plugin_name}}/pyproject.toml index 562235e..9d74432 100644 --- a/{{cookiecutter.plugin_name}}/pyproject.toml +++ b/{{cookiecutter.plugin_name}}/pyproject.toml @@ -95,7 +95,7 @@ filterwarnings = [ [tool.coverage.run] # Configuration of [coverage.py](https://coverage.readthedocs.io) # reporting which lines of your plugin are covered by tests -source="{{cookiecutter.module_name}}" +source=["{{cookiecutter.module_name}}"] [tool.isort] # Configuration of [isort](https://isort.readthedocs.io)