diff --git a/.codecov.yml b/.codecov.yml index 5784651d..9454b0e7 100644 --- a/.codecov.yml +++ b/.codecov.yml @@ -1,3 +1,3 @@ codecov: notify: - after_n_builds: 3 + after_n_builds: 6 diff --git a/admin-js/tests/setupTests.js b/admin-js/tests/setupTests.js index 989540df..593b5f86 100644 --- a/admin-js/tests/setupTests.js +++ b/admin-js/tests/setupTests.js @@ -39,7 +39,7 @@ beforeAll(async() => { return; if (global.__coverage__) - pythonProcess = spawn("coverage", ["run", global.pythonProcessPath], {"cwd": ".."}); + pythonProcess = spawn("coverage", ["run", "--source=examples/", global.pythonProcessPath], {"cwd": ".."}); else pythonProcess = spawn("python3", ["-u", global.pythonProcessPath], {"cwd": ".."});