From c57d28918fdf2ada4e7de659fcdb483ab3fc3c15 Mon Sep 17 00:00:00 2001 From: miro Date: Mon, 14 Oct 2024 23:31:03 +0100 Subject: [PATCH] unittests --- .github/workflows/integration_tests.yml | 14 +------------- .github/workflows/mycroft_tests.yml | 14 +------------- 2 files changed, 2 insertions(+), 26 deletions(-) diff --git a/.github/workflows/integration_tests.yml b/.github/workflows/integration_tests.yml index 419f5c468fc..22ba86a9998 100644 --- a/.github/workflows/integration_tests.yml +++ b/.github/workflows/integration_tests.yml @@ -57,16 +57,4 @@ jobs: pip install -e .[mycroft,plugins] - name: Run integration tests run: | - pytest --cov-append --cov=ovos_core --cov-report xml test/integrationtests - - name: Upload coverage - env: - CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}} - uses: codecov/codecov-action@v3 - with: - token: ${{ secrets.CODECOV_TOKEN }} - directory: ./coverage/reports/ - fail_ci_if_error: true - files: ./coverage.xml,!./cache - flags: integrationtests - name: codecov-integrationtests - verbose: true + pytest test/integrationtests diff --git a/.github/workflows/mycroft_tests.yml b/.github/workflows/mycroft_tests.yml index 692e46a1292..5c0c3deddcd 100644 --- a/.github/workflows/mycroft_tests.yml +++ b/.github/workflows/mycroft_tests.yml @@ -56,16 +56,4 @@ jobs: pip install -e .[mycroft,plugins] - name: Run mycroft compat tests run: | - pytest --cov=ovos_core --cov-report xml test/backwards_compat - - name: Upload coverage - env: - CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}} - uses: codecov/codecov-action@v3 - with: - token: ${{ secrets.CODECOV_TOKEN }} - directory: ./coverage/reports/ - fail_ci_if_error: true - files: ./coverage.xml,!./cache - flags: mycrofttests - name: codecov-unittests - verbose: true + pytest test/backwards_compat \ No newline at end of file