Skip to content

Commit

Permalink
ci: fix pip install
Browse files Browse the repository at this point in the history
  • Loading branch information
mikonse committed Nov 5, 2023
1 parent e8a34c1 commit 1d25372
Showing 1 changed file with 4 additions and 12 deletions.
16 changes: 4 additions & 12 deletions .github/workflows/ci_testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,7 @@ jobs:
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip flit
flit install --symlink --deps develop
run: pip install -e '.[dev,test]'
- name: Analysing the code with pylint
run: make pylint

Expand All @@ -29,9 +27,7 @@ jobs:
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip flit
flit install --symlink --deps develop
run: pip install -e '.[dev,test]'
- name: Analysing the code with mypy
run: make mypy

Expand Down Expand Up @@ -69,9 +65,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip flit
flit install --symlink --deps develop
run: pip install -e '.[dev,test]'
- name: Run all tests
run: pytest tests --doctest-modules --junitxml=junit/test-results.xml --cov=com --cov-report=xml --cov-report=html

Expand All @@ -84,9 +78,7 @@ jobs:
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip flit
flit install --symlink --deps develop
run: pip install -e '.[dev,test]'
- name: Check formatting
run: make check-format

Expand Down

0 comments on commit 1d25372

Please sign in to comment.