Skip to content

Commit

Permalink
Ords tests use conda
Browse files Browse the repository at this point in the history
  • Loading branch information
ppinchuk committed Mar 27, 2024
1 parent 8d4390b commit 5be301b
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/pytest_ords.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,12 @@ jobs:
ref: ${{ github.event.pull_request.head.ref }}
fetch-depth: 1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
python-version: ${{ matrix.python-version }}
- name: Install dependencies
- name: Install dependencies'
shell: bash -l {0}
run: |
conda install -c conda-forge poppler
python -m pip install --upgrade pip
Expand All @@ -31,6 +33,7 @@ jobs:
python -m pip install .
playwright install
- name: Run pytest and Generate coverage report
shell: bash -l {0}
run: |
python -m pytest -v --disable-warnings --cov=./ --cov-report=xml:coverage.xml
- name: Upload coverage to Codecov
Expand Down

0 comments on commit 5be301b

Please sign in to comment.