Skip to content

Commit 318af03

Browse files
committed
update dependency path in workflows
1 parent fc92bb4 commit 318af03

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/pylint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
python -m venv venv
2020
source venv/bin/activate
2121
python -m pip install --upgrade pip
22-
pip install -r requirements.txt
22+
pip install -r src/requirements.txt
2323
pip install pylint
2424
- name: Analysing the code with pylint
2525
run: |

.github/workflows/unittests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
python -m venv venv
2323
source venv/bin/activate
2424
python -m pip install --upgrade pip
25-
pip install -r requirements.txt
25+
pip install -r src/requirements.txt
2626
- name: Run the tests
2727
run: |
2828
venv/bin/python -m unittest discover .

0 commit comments

Comments
 (0)