Browse Source

ref: fix install-py-dev (#54832)

missed this when removing deps -- now it installs things like CI




<!-- Describe your PR here. -->
anthony sottile 1 year ago
parent
commit
23cc4387e6
1 changed files with 3 additions and 1 deletions
  1. 3 1
      scripts/lib.sh

+ 3 - 1
scripts/lib.sh

@@ -94,10 +94,12 @@ install-py-dev() {
     # pip doesn't do well with swapping drop-ins
     pip uninstall -qqy uwsgi
 
+    pip-install -r requirements-dev-frozen.txt
+
     # SENTRY_LIGHT_BUILD=1 disables webpacking during setup.py.
     # Webpacked assets are only necessary for devserver (which does it lazily anyways)
     # and acceptance tests, which webpack automatically if run.
-    SENTRY_LIGHT_BUILD=1 pip-install -e '.[dev]'
+    SENTRY_LIGHT_BUILD=1 pip-install -e . --no-deps
 }
 
 setup-git-config() {