Skip to content

Commit

Permalink
python -m pip
Browse files Browse the repository at this point in the history
  • Loading branch information
cleder committed Oct 27, 2023
1 parent 2e317bd commit f748513
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/run-all-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ".[testing]"
python -m pip install ".[testing]"
- name: Test with pytest
run: |
pytest tests --cov=tests --cov=pygeoif --cov-report=xml
Expand All @@ -47,15 +47,15 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[typing, complexity, linting]"
python -m pip install -e ".[typing, complexity, linting]"
- name: Typecheck
run: |
mypy pygeoif
- name: Linting
run: |
flake8 pygeoif
black --check pygeoif tests
ruff --no-fix
ruff --no-fix pygeoif tests
yamllint .github/workflows/
- name: Check complexity
run: |
Expand All @@ -77,7 +77,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[testing]"
python -m pip install -e ".[testing]"
- name: Test with pytest
run: |
pytest tests
Expand Down

0 comments on commit f748513

Please sign in to comment.