Skip to content

Commit

Permalink
Install git before pyppeteer and puppeteer tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jjnesbitt committed Apr 28, 2022
1 parent ae0be4c commit 54c6c15
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/frontend-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
install_directory: web
install_command: yarn install
test_directory: .
test_command: tox -e test-pyppeteer
test_command: apt install -y git && tox -e test-pyppeteer
env:
DJANGO_DATABASE_URL: postgres://postgres:postgres@postgres:5432/django
DJANGO_CELERY_BROKER_URL: amqp://rabbitmq:5672/
Expand Down Expand Up @@ -144,6 +144,9 @@ jobs:
with:
python-version: '3.9'

- name: Install git
run: apt install -y git

- name: Install latest version of pip
run: pip install --upgrade pip

Expand All @@ -155,7 +158,7 @@ jobs:

- name: Install dandi-api dependencies
if: steps.pip-cache.outputs.cache-hit != 'true'
run: pip install --upgrade --upgrade-strategy eager -e .[dev]
run: pip install --upgrade --upgrade-strategy eager .[dev]

- name: Apply migrations to API server
run: python manage.py migrate
Expand Down

0 comments on commit 54c6c15

Please sign in to comment.