Skip to content

Commit

Permalink
ci: small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mikonse committed Jan 2, 2024
1 parent b0833d1 commit d9e1864
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/backend.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
with:
python-version: "3.10"
- name: Install dependencies
run: pip install '.[dev,test]'
run: pip install -e '.[dev,test]'
- name: Analysing the code with pylint
run: make pylint

Expand All @@ -25,7 +25,7 @@ jobs:
with:
python-version: "3.10"
- name: Install dependencies
run: pip install '.[dev,test]'
run: pip install -e '.[dev,test]'
- name: Analysing the code with mypy
run: make mypy

Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install '.[dev,test]'
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 @@ -76,6 +76,6 @@ jobs:
with:
python-version: "3.10"
- name: Install dependencies
run: pip install '.[dev,test]'
run: pip install -e '.[dev,test]'
- name: Check formatting
run: make check-format
1 change: 1 addition & 0 deletions .github/workflows/push_on_master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ jobs:
cache-dependency-path: frontend/package-lock.json
- name: Install dependencies
run: npm ci
working-directory: frontend

- name: Build API Image
id: build-api-image
Expand Down

0 comments on commit d9e1864

Please sign in to comment.