File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed
Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments