Merge pull request #1955 from bookwyrm-social/dev-tools-tweaks

Updates dev tools
This commit is contained in:
Mouse Reeve 2022-02-18 09:21:45 -08:00 committed by GitHub
commit cd65cfafce
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

2
bw-dev
View file

@ -101,7 +101,7 @@ case "$CMD" in
docker-compose restart celery_worker
;;
pytest)
runweb --no-deps pytest --no-cov-on-fail "$@"
runweb pytest --no-cov-on-fail "$@"
;;
collectstatic)
runweb python manage.py collectstatic --no-input

View file

@ -10,5 +10,5 @@ RUN pip install -r requirements.txt
RUN apt-get update && apt-get install -y curl
RUN curl -sL https://deb.nodesource.com/setup_16.x | bash -
RUN apt-get install -y nodejs
RUN apt-get install -y nodejs && apt-get clean
RUN npm install .