Skip to content

Commit

Permalink
fix: permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
felipemontoya committed Mar 5, 2024
1 parent ede3045 commit 98e28eb
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,23 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
with:
path: eox-tenant
path: src/eox-tenant

- name: introspection
run: |
ls -hla
chmod 664 src
chmod 664 src/*
ls -hla
- name: Prepare Tutor
run: |
pip install "tutor<17.0.0"
TUTOR_ROOT="$(pwd)" tutor config save
TUTOR_ROOT="$(pwd)" tutor mounts add lms:$(pwd)/eox-tenant:/openedx/eox-tenant
TUTOR_ROOT="$(pwd)" tutor mounts add lms:$(pwd)/src/eox-tenant:/openedx/src/eox-tenant
- name: Launch tutor and test
run: |
TUTOR_ROOT="$(pwd)" tutor local launch -I
TUTOR_ROOT="$(pwd)" tutor local run lms pip install -e ../eox-tenant
TUTOR_ROOT="$(pwd)" tutor local run lms pip install -e ../src/eox-tenant
TUTOR_ROOT="$(pwd)" tutor local run lms ./manage.py lms help

0 comments on commit 98e28eb

Please sign in to comment.