implement basic testing fixtures and linting #19

Closed
remoll wants to merge 7 commits from feature/backend-testing-and-linting into main
2 changed files with 2 additions and 0 deletions
Showing only changes of commit ad72d104a0 - Show all commits

View File

@ -18,6 +18,7 @@ jobs:
- name: Install dependencies
run: |
apt-get update && apt-get install -y python3 python3-pip
pip install pipenv
# only install dev-packages
pipenv install --categories=dev-packages
working-directory: backend

View File

@ -18,6 +18,7 @@ jobs:
- name: Install dependencies
run: |
apt-get update && apt-get install -y python3 python3-pip
pip install pipenv
# install all packages, including dev-packages
pipenv install --dev
working-directory: backend