Skip to content

Commit 003e37b

Browse files
Try to fix the deployment 34
Signed-off-by: Lukasz Gryglicki <[email protected]>
1 parent fa2789c commit 003e37b

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

.github/workflows/deploy-dev.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,23 +73,25 @@ jobs:
7373
python -m venv .venv
7474
source .venv/bin/activate
7575
pip install --upgrade pip
76-
pip install python-jose pynamodb
76+
# pip install python-jose pynamodb
7777
pip install -r requirements.txt
7878
7979
- name: Python Lint
8080
working-directory: cla-backend
8181
run: |
8282
python -m venv .venv
8383
source .venv/bin/activate
84-
pip install --upgrade pylint wrapt
84+
# pip install --upgrade pylint wrapt
85+
pip install --upgrade pylint
8586
pylint cla/*.py || true
8687
8788
- name: Python Test
8889
working-directory: cla-backend
8990
run: |
9091
python -m venv .venv
9192
source .venv/bin/activate
92-
pip install --upgrade pytest py pytest_clarity wrapt
93+
# pip install --upgrade pytest py pytest_clarity wrapt
94+
pip install --upgrade pytest py pytest_clarity
9395
pytest "cla/tests" -p no:warnings || true
9496
env:
9597
PLATFORM_GATEWAY_URL: https://api-gw.dev.platform.linuxfoundation.org

cla-backend/requirements.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ pydocusign==2.2
3737
PyGithub==1.55
3838
PyJWT==2.7.0
3939
pylint==2.11.1
40-
## pynamodb==4.4.0
4140
pyparsing==2.4.5
4241
pytest==5.0.1
4342
pytest-clarity==0.3.0a0
@@ -57,3 +56,7 @@ wcwidth==0.1.7
5756
Werkzeug==0.15.5
5857
zipp==3.15.0
5958
markupsafe==2.0.1
59+
# LG:
60+
python-jose==3.3.0
61+
pynamodb==6.0.2
62+
wrapt==1.17.2

0 commit comments

Comments
 (0)