Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
13 changes: 11 additions & 2 deletions .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,16 @@ jobs:
- name: Tutor build openedx
run: tutor images build openedx aspects aspects-superset
- name: Tutor start
run: tutor local start -d
run: |
tutor local start -d
sleep 10
tutor local logs clickhouse
tutor local stop clickhouse
tutor local start permissions -d
sleep 20
tutor local start clickhouse -d
sleep 10
tutor local logs clickhouse
- name: Tutor init
run: tutor local do init
- name: Test alembic
Expand Down Expand Up @@ -278,7 +287,7 @@ jobs:
echo "------------------------"
done
- name: Check jobs logs
if: '!cancelled()'
if: "!cancelled()"
run: |
job_list=($(kubectl get jobs | grep job | awk '{print $1}'))

Expand Down
1 change: 1 addition & 0 deletions tutoraspects/patches/local-docker-compose-services
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{% if RUN_CLICKHOUSE %}
clickhouse:
image: {{DOCKER_IMAGE_CLICKHOUSE}}
user: "101:101"
restart: unless-stopped
environment:
CLICKHOUSE_DB: "{{ ASPECTS_XAPI_DATABASE }}"
Expand Down
Loading