Skip to content

Commit

Permalink
change the order of installs
Browse files Browse the repository at this point in the history
  • Loading branch information
rsln-s committed Aug 1, 2024
1 parent c33d328 commit ad6f002
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/qokit-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,16 @@ jobs:
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
- name: pip install
run: |
python -m pip install --upgrade pip
pip install .
- name: Install additional dependencies
run: |
python -m pip install --upgrade pip
pip install pipreqs black addheader pytest-cov pip-licenses
- name: black check
run: |
black --check .
- name: pip install
run: |
pip install .
- name: Run tests
run: |
pytest --cov=qokit --cov-fail-under=75 -rs tests
Expand Down

0 comments on commit ad6f002

Please sign in to comment.