Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Pin pip version
run: python -m pip install --upgrade "pip<24.1"
- name: Install requirements
run: |
pip install .
Expand Down Expand Up @@ -45,14 +47,17 @@ jobs:
pip install .
pip install -r requirements_dev.txt
- name: Deploy app
run: docker-compose up -d --build
run: docker compose up -d --build
- name: Wait for app startup
run: sleep 20
shell: bash
run: |
sleep 20
docker compose ps
- name: Run integration tests
shell: bash
run: pytest tests/test_integration
- name: Tear down app
run: docker-compose down
run: docker compose down
publish:
name: Build and publish app image
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion pylintrc
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[MESSAGES CONTROL]
disable=W0511,W1201,W1202,W1203
disable=W0511,W1201,W1202,W1203,R0917