Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
goanpeca committed Jul 13, 2023
1 parent 2c5832b commit bfd60a2
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/test_pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ jobs:
with:
python-version: 3.9
- name: Install package
run: pip install -e .
run: |
pip install --upgrade pip
pip install -e .
- name: Install dependencies
run: pip install check-manifest
- name: Run check
Expand All @@ -56,7 +58,9 @@ jobs:
with:
python-version: ${{ matrix.python }}
- name: Install package
run: pip install -e .
run: |
pip install --upgrade pip
pip install -e .
- name: Install dependencies
run: pip install pytest pytest-cov
- name: Run pytest
Expand Down

0 comments on commit bfd60a2

Please sign in to comment.