Skip to content

Commit

Permalink
[workflow] use pip install . to avoid deprecation warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
jgrewe committed Dec 14, 2023
1 parent 5213865 commit 1b3f818
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/run-tests.yml
Expand Up @@ -24,7 +24,7 @@ jobs:
run: python -c "import sys; print(sys.version)"
- name: Install dependencies
run: |
python setup.py install
pip install . install
pip install -r requirements-test.txt
- name: Run tests
run: pytest
Expand All @@ -46,7 +46,7 @@ jobs:
run: python -c "import sys; print(sys.version)"
- name: Install dependencies
run: |
python setup.py install
pip install . install
pip install -r requirements-test.txt
- name: Run tests
run: pytest
Expand All @@ -72,7 +72,7 @@ jobs:
run: python -c "import sys; print(sys.version)"
- name: Install dependencies
run: |
python setup.py install
pip install .
pip install -r requirements-test.txt
- name: Run tests
run: pytest
Expand All @@ -98,7 +98,7 @@ jobs:
run: python -c "import sys; print(sys.version)"
- name: Install dependencies
run: |
python setup.py install
pip install .
pip install -r requirements-test.txt
- name: Run tests
run: pytest
Expand All @@ -114,7 +114,7 @@ jobs:
run: python -c "import sys; print(sys.version)"
- name: Install dependencies
run: |
python setup.py install
pip install .
pip install -r requirements-test.txt
pip install pytest coveralls
- name: Create coverage
Expand All @@ -134,7 +134,7 @@ jobs:
python-version: "3.10"
- name: Install dependencies
run: |
python setup.py install
pip install .
pip install -r requirements-test.txt
pip install pytest pytest-cov
- name: Create coverage
Expand Down

0 comments on commit 1b3f818

Please sign in to comment.