From 19a8326f0f756fb1205ee0ef775aa2d8f90b1568 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Thu, 17 Oct 2019 21:19:04 +0300 Subject: [PATCH] Fix test for package manifest --- Makefile | 2 +- tests/test_pkgmanifest.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index ff246abd..088bae11 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ black: black --target-version py27 ./tests test: - py.test --verbose --capture=no --exitfirst -n 3 --dist=loadscope tests --ignore tests/test_examples.py --ignore tests/test_pkgmanifest.py + py.test --verbose --capture=no --exitfirst -n 3 --dist=loadscope tests --ignore tests/test_examples.py before-commit: isort black lint test diff --git a/tests/test_pkgmanifest.py b/tests/test_pkgmanifest.py index 8096d9ba..cbd632ed 100644 --- a/tests/test_pkgmanifest.py +++ b/tests/test_pkgmanifest.py @@ -153,7 +153,7 @@ sentence=This is Arduino library ).as_dict() assert data["export"] == { "exclude": ["extras", "docs", "tests", "test", "*.doxyfile", "*.pdf"], - "include": "libraries/TestPackage", + "include": ["libraries/TestPackage"], } assert data["repository"] == { "url": "https://github.com/username/reponame",