File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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)
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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ set NODE_OPTIONS=--max_old_space_size=8192
55echo .
66echo Restoring backend python packages
77echo .
8- call python -m pip install -r requirements.txt
8+ call python -m pip install -r src/ requirements.txt
99if " %errorlevel% " neq " 0" (
1010 echo Failed to restore backend python packages
1111 exit /B %errorlevel%
@@ -14,7 +14,7 @@ if "%errorlevel%" neq "0" (
1414echo .
1515echo Restoring frontend npm packages
1616echo .
17- cd frontend
17+ cd src/ frontend
1818call npm install
1919if " %errorlevel% " neq " 0" (
2020 echo Failed to restore frontend npm packages
You can’t perform that action at this time.
0 commit comments