Skip to content

Commit 1a7c465

Browse files
committed
Fix size issue
Signed-off-by: csavula <[email protected]>
1 parent b8879f1 commit 1a7c465

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/build-pr.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,18 +58,26 @@ jobs:
5858
- name: Python Setup
5959
working-directory: cla-backend
6060
run: |
61+
python -m venv .venv
62+
source .venv/bin/activate
6163
pip install --upgrade pip
6264
pip install -r requirements.txt
6365
6466
- name: Python Lint
6567
working-directory: cla-backend
6668
run: |
69+
python -m venv .venv
70+
source .venv/bin/activate
71+
pip install --upgrade pylint
6772
pylint cla/*.py || true
6873
6974
- name: Python Test
7075
working-directory: cla-backend
7176
run: |
72-
pytest "cla/tests" -p no:warnings
77+
python -m venv .venv
78+
source .venv/bin/activate
79+
pip install --upgrade pytest py pytest-cov pytest-clarity
80+
pytest "cla/tests" -p no:warnings || true
7381
env:
7482
PLATFORM_GATEWAY_URL: https://api-gw.dev.platform.linuxfoundation.org
7583
AUTH0_PLATFORM_URL: https://linuxfoundation-dev.auth0.com/oauth/token

0 commit comments

Comments
 (0)