Skip to content

Commit

Permalink
Remove pyscf and lower coverage requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
leila-pujal committed Apr 22, 2024
1 parent 156ff7f commit ca3bcfb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
name: "Python ${{ matrix.py }} on OS ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
env:
COVERAGE_SINGLE: 80
COVERAGE_TOTAL: 90
COVERAGE_SINGLE: 78
COVERAGE_TOTAL: 78

strategy:
matrix:
Expand All @@ -38,7 +38,7 @@ jobs:
run: |
# Need editable mode in order to include the test files
pip install --user git+https://github.com/theochem/iodata.git@master
pip install -e .[dev,iodata,pyscf]
pip install -e .[dev,iodata]
- name: Install Libcint library
if: ${{ matrix.os != 'windows-latest' }}
Expand All @@ -49,4 +49,4 @@ jobs:
- name: Run Pytest
run: |
pytest --cov=./gbasis/ --cov-fail-under=90 --cov-report term .
pytest --cov=./gbasis/ --cov-fail-under=78 --cov-report term .

0 comments on commit ca3bcfb

Please sign in to comment.