Skip to content

Commit 7b25eb5

Browse files
authored
Merge pull request #165 from helpfulengineering/demo-frontend
Demo frontend
2 parents 9aef5d5 + e3517ac commit 7b25eb5

304 files changed

Lines changed: 22222 additions & 6759 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/ci-cd.yml

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@ jobs:
3030
- name: Install tooling and dependencies
3131
run: |
3232
python -m pip install --upgrade pip
33-
pip install ruff black
34-
pip install -r requirements.txt
33+
pip install -e ".[dev]" ruff black
3534
3635
- name: Ruff lint
3736
run: |
@@ -68,8 +67,7 @@ jobs:
6867
- name: Install dependencies
6968
run: |
7069
python -m pip install --upgrade pip
71-
pip install -r requirements.txt
72-
pip install pytest pytest-cov pytest-asyncio pytest-timeout
70+
pip install -e ".[dev]" pytest-cov
7371
7472
- name: Run unit lane
7573
run: |
@@ -126,8 +124,7 @@ jobs:
126124
- name: Install dependencies
127125
run: |
128126
python -m pip install --upgrade pip
129-
pip install -r requirements.txt
130-
pip install pytest pytest-asyncio pytest-timeout
127+
pip install -e ".[dev]"
131128
132129
- name: Run contract stability suite
133130
run: |
@@ -158,15 +155,11 @@ jobs:
158155
- name: Install dependencies and security tools
159156
run: |
160157
python -m pip install --upgrade pip
161-
pip install -r requirements.txt
162-
pip install pip-audit bandit
158+
pip install -e ".[dev]" pip-audit bandit
163159
164160
- name: Dependency vulnerability scan
165161
run: |
166-
pip-audit -r requirements.txt
167-
if [ -f requirements-dev.txt ]; then
168-
pip-audit -r requirements-dev.txt
169-
fi
162+
pip-audit
170163
171164
- name: Static security scan
172165
run: |

.pre-commit-config.yaml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,6 @@ repos:
55
- id: black
66
args: ["--config=pyproject.toml"]
77

8-
- repo: https://github.com/pycqa/isort
9-
rev: 8.0.0
10-
hooks:
11-
- id: isort
12-
args: ["--settings-path=pyproject.toml"]
13-
148
- repo: local
159
hooks:
1610
- id: update-repo-map

0 commit comments

Comments
 (0)