Skip to content

Commit

Permalink
Fix python modules CI
Browse files Browse the repository at this point in the history
  • Loading branch information
lincmba committed Nov 7, 2023
1 parent 885536b commit 2e459bb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ jobs:
- name: Generate Importer Report
run: |
python3 -m venv venv
. venv/bin/activate
python -m pip install --upgrade pip
source venv/bin/activate
python3 -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest-cov
pytest --doctest-modules --junitxml=coverage.xml --cov=importer --cov-report=xml --cov-report=html
Expand All @@ -65,8 +65,8 @@ jobs:
- name: Generate Cleaner Report
run: |
python3 -m venv venv
. venv/bin/activate
python -m pip install --upgrade pip
source venv/bin/activate
python3 -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest-cov
pytest --doctest-modules --junitxml=coverage.xml --cov=cleaner --cov-report=xml --cov-report=html
Expand Down

0 comments on commit 2e459bb

Please sign in to comment.