@@ -63,32 +63,32 @@ jobs:
6363 sleep 10 # wait for app to initialize
6464 kill $! # stop the app
6565
66- backend-test-lint :
67- name : Run backend lint and tests
68- runs-on : ubuntu-latest
69- needs : setup-install
70- steps :
71- - name : Checkout repository
72- uses : actions/checkout@v3
73-
74- - name : Setup Python 3.9
75- uses : actions/setup-python@v4
76- with :
77- python-version : 3.9
78-
79- - name : Install backend dependencies
80- working-directory : ./backend
81- run : |
82- python -m pip install --upgrade pip
83- pip install -r requirements.txt
84-
85- - name : Run backend lint checks
86- working-directory : ./backend
87- run : |
88- black . --check
89- isort . --check-only
90- flake8 .
91-
92- - name : Run backend tests
93- working-directory : ./backend
94- run : pytest
66+ # backend-test-lint:
67+ # name: Run backend lint and tests
68+ # runs-on: ubuntu-latest
69+ # needs: setup-install
70+ # steps:
71+ # - name: Checkout repository
72+ # uses: actions/checkout@v3
73+
74+ # - name: Setup Python 3.9
75+ # uses: actions/setup-python@v4
76+ # with:
77+ # python-version: 3.9
78+
79+ # - name: Install backend dependencies
80+ # working-directory: ./backend
81+ # run: |
82+ # python -m pip install --upgrade pip
83+ # pip install -r requirements.txt
84+
85+ # - name: Run backend lint checks
86+ # working-directory: ./backend
87+ # run: |
88+ # black . --check
89+ # isort . --check-only
90+ # flake8 .
91+
92+ # - name: Run backend tests
93+ # working-directory: ./backend
94+ # run: pytest
0 commit comments