From a31ee6628ff44c06ea093cd6a603e62b9cb05bf7 Mon Sep 17 00:00:00 2001 From: Hicham DAKHLI Date: Mon, 22 May 2023 16:22:04 +0200 Subject: [PATCH] build: Activate code coverage in github action --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5d09c00b..f61942d9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -106,12 +106,12 @@ jobs: run: | python -m pip install --upgrade pip pip install --user pipenv - #- name: Run unit tests Extraction - # working-directory: train/extraction - # run: | - # pipenv install --dev - # pipenv run coverage run -m unittest tests.extraction_test - # pipenv run coverage report + - name: Run unit tests Extraction + working-directory: train/extraction + run: | + pipenv install --dev + pipenv run coverage run -m unittest tests.extraction_test + pipenv run coverage report - name: Run unit tests Label Split Data working-directory: train/label_split_data run: |