Skip to content

Commit 4dc1d30

Browse files
Merge pull request #4541 from communitybridge/unicron-fix-3
Fix?
2 parents 3cb681b + 66d8796 commit 4dc1d30

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/deploy-dev.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,6 @@ jobs:
6969
pip install --upgrade pip
7070
pip install -r requirements.txt
7171
72-
73-
7472
- name: Python Lint
7573
working-directory: cla-backend
7674
run: |
@@ -79,7 +77,10 @@ jobs:
7977
- name: Python Test
8078
working-directory: cla-backend
8179
run: |
82-
python -m pytest "cla/tests" -p no:warnings
80+
python -m venv venv
81+
source venv/bin/activate
82+
pip install pytest
83+
pytest "cla/tests" -p no:warnings
8384
env:
8485
PLATFORM_GATEWAY_URL: https://api-gw.dev.platform.linuxfoundation.org
8586
AUTH0_PLATFORM_URL: https://linuxfoundation-dev.auth0.com/oauth/token

0 commit comments

Comments
 (0)