Skip to content

Commit

Permalink
ci: correctly install from source in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
darosior committed Jul 22, 2024
1 parent 0e0dcf6 commit 52474a4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Installation (deps and package)
- name: Install from source
run: |
python -m pip install --upgrade pip
pip install pytest
pip install -r requirements.txt -r tests/requirements.txt
pip install setuptools
python setup.py install
- name: Test with pytest
run: |
pip install -r tests/requirements.txt
pytest -vvv
linter:
Expand Down

0 comments on commit 52474a4

Please sign in to comment.