Skip to content

Commit

Permalink
Fix ambiguous redirect
Browse files Browse the repository at this point in the history
  • Loading branch information
nas-tabchiche committed Oct 16, 2024
1 parent 20c3b6d commit d4f42f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/functional-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:
working-directory: ${{ env.backend-directory }}
run: |
export $(grep -v '^#' .env | xargs)
echo BACKEND_LOGFILE=${{ matrix.python-version }}-${{ matrix.playwright-browser }}-${{ github.run_id }}-${{ github.run_attempt }}-backend.log >> $GITHUB_ENV
echo BACKEND_LOGFILE=${{ matrix.python-version }}-${{ matrix.playwright-browser }}-${{ github.run_id }}-${{ github.run_attempt }}-backend.log >> "$GITHUB_ENV"
python manage.py createsuperuser --noinput
nohup python manage.py runserver > $BACKEND_LOGFILE &
- name: Build frontend
Expand Down Expand Up @@ -200,7 +200,7 @@ jobs:
working-directory: ${{ env.backend-directory }}
run: |
export $(grep -v '^#' .env | xargs)
echo ENTERPRISE_BACKEND_LOGFILE=${{ matrix.python-version }}-${{ matrix.playwright-browser }}-${{ github.run_id }}-${{ github.run_attempt }}-enterprise-backend.log >> $GITHUB_ENV
echo ENTERPRISE_BACKEND_LOGFILE=${{ matrix.python-version }}-${{ matrix.playwright-browser }}-${{ github.run_id }}-${{ github.run_attempt }}-enterprise-backend.log >> "$GITHUB_ENV"
poetry run python manage.py createsuperuser --noinput
nohup poetry run python manage.py runserver --settings=${{ env.enterprise-backend-settings-module }} > $ENTERPRISE_BACKEND_LOGFILE &
- name: Run tests with browser ${{ matrix.playwright-browser }}
Expand Down

0 comments on commit d4f42f1

Please sign in to comment.