Skip to content

Commit 84d519d

Browse files
path updated
1 parent d193a0c commit 84d519d

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/pylint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Install dependencies
2424
run: |
2525
python -m pip install --upgrade pip
26-
pip install -r src/backend/requirements-dev.txt
26+
pip install -r src/requirements-dev.txt
2727
2828
# Step 3: Run all code quality checks
2929
- name: Pylint

.github/workflows/python-app.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Install dependencies
2626
run: |
2727
python -m pip install --upgrade pip
28-
pip install -r src/backend/requirements-dev.txt
28+
pip install -r src/requirements-dev.txt
2929
- name: Test with pytest
3030
run: |
3131
export PYTHONPATH=$(pwd)
@@ -43,7 +43,7 @@ jobs:
4343
- name: Install dependencies
4444
run: |
4545
python -m pip install --upgrade pip
46-
pip install -r src/backend/requirements-dev.txt
46+
pip install -r src/requirements-dev.txt
4747
- name: Test with pytest
4848
run: |
4949
$env:PYTHONPATH=$pwd

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
- name: Install Backend Dependencies
3131
run: |
32-
python -m pip install -r src/backend/requirements.txt
32+
python -m pip install -r src/requirements.txt
3333
python -m pip install coverage pytest-cov
3434
python -m pip install azure-keyvault-secrets
3535

src/start.cmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set NODE_OPTIONS=--max_old_space_size=8192
55
echo.
66
echo Restoring backend python packages
77
echo.
8-
call python -m pip install -r requirements.txt
8+
call python -m pip install -r src/requirements.txt
99
if "%errorlevel%" neq "0" (
1010
echo Failed to restore backend python packages
1111
exit /B %errorlevel%
@@ -14,7 +14,7 @@ if "%errorlevel%" neq "0" (
1414
echo.
1515
echo Restoring frontend npm packages
1616
echo.
17-
cd frontend
17+
cd src/frontend
1818
call npm install
1919
if "%errorlevel%" neq "0" (
2020
echo Failed to restore frontend npm packages

0 commit comments

Comments
 (0)