From 5ddff118554f3eed360046f7517a930de7e7ae8c Mon Sep 17 00:00:00 2001 From: JarbasAi Date: Sat, 30 Sep 2023 06:17:40 +0100 Subject: [PATCH] re-add padatious tests --- .github/workflows/unit_tests.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml index 4f069a60c116..01d064612eb0 100644 --- a/.github/workflows/unit_tests.yml +++ b/.github/workflows/unit_tests.yml @@ -65,15 +65,15 @@ jobs: - name: Run full core unittests run: | pytest --cov=ovos_core --cov-report xml test/end2end - # NOTE: additional pytest invocations should also add the --cov-append flag - # or they will overwrite previous invocations' coverage reports - # (for an example, see OVOS Skill Manager's workflow) - name: Run integration tests run: | pytest --cov-append --cov=ovos_core --cov-report xml test/integrationtests - # NOTE: additional pytest invocations should also add the --cov-append flag - # or they will overwrite previous invocations' coverage reports - # (for an example, see OVOS Skill Manager's workflow) + - name: Install padatious + run: | + pip install .[lgpl] + - name: Run unittests with padatious + run: | + pytest --cov=ovos_core --cov-report xml test/unittests/skills - name: Upload coverage if: "${{ matrix.python-version == '3.9' }}" env: