Skip to content
Snippets Groups Projects
Commit ee424253 authored by George Hickman's avatar George Hickman Committed by Fredrik Jonsson
Browse files

Split dependencies into normal and development

parent 2ffd404d
No related branches found
No related tags found
No related merge requests found
...@@ -30,7 +30,7 @@ jobs: ...@@ -30,7 +30,7 @@ jobs:
- restore_cache: - restore_cache:
keys: keys:
- v2-python-{{ .Branch }}-{{ checksum "requirements.txt" }} - v2-python-{{ .Branch }}-{{ checksum "requirements-dev.txt" }}
- v2-python-{{ .Branch }}- - v2-python-{{ .Branch }}-
- v2-python- - v2-python-
...@@ -46,7 +46,7 @@ jobs: ...@@ -46,7 +46,7 @@ jobs:
python3 -m venv venv python3 -m venv venv
. venv/bin/activate . venv/bin/activate
pip install coverage codecov pip install coverage codecov
pip install -r requirements.txt pip install -r requirements-dev.txt
- run: - run:
name: install node dependencies name: install node dependencies
...@@ -57,7 +57,7 @@ jobs: ...@@ -57,7 +57,7 @@ jobs:
- save_cache: - save_cache:
paths: paths:
- ./venv - ./venv
key: v2-python-{{ .Branch }}-{{ checksum "requirements.txt" }} key: v2-python-{{ .Branch }}-{{ checksum "requirements-dev.txt" }}
- save_cache: - save_cache:
paths: paths:
......
...@@ -31,7 +31,7 @@ install: ...@@ -31,7 +31,7 @@ install:
- pip install codecov - pip install codecov
# Install project dependencies # Install project dependencies
- pip install -r requirements.txt - pip install -r requirements-dev.txt
# Install node # Install node
- nvm install 10 - nvm install 10
......
-r requirements.txt
factory_boy==2.9.2
Faker==1.0.8 # Pinning to avoid API changes to pydecimal in 0.x - could go higher in future
flake8==3.7.9
responses==0.10.6
stellar==0.4.5
wagtail-factories==1.1.0
Werkzeug==0.14.1
# Development dependencies, install manually if needed.
# stellar==0.4.5
# Werkzeug==0.14.1
# Test dependencies
flake8
factory_boy==2.9.2
Faker==1.0.8 # Pinning to avoid API changes to pydecimal in 0.x - could go higher in future
wagtail-factories==1.1.0
responses==0.10.6
# Monitor dependencies # Monitor dependencies
scout-apm==2.5.0 scout-apm==2.5.0
sentry-sdk==0.12.3 sentry-sdk==0.12.3
......
...@@ -32,7 +32,7 @@ su - vagrant -c "$PIP install --upgrade pip" ...@@ -32,7 +32,7 @@ su - vagrant -c "$PIP install --upgrade pip"
su - vagrant -c "$PIP install --upgrade six setuptools" su - vagrant -c "$PIP install --upgrade six setuptools"
# Install PIP requirements # Install PIP requirements
su - vagrant -c "$PIP install -r $PROJECT_DIR/requirements.txt" su - vagrant -c "$PIP install -r $PROJECT_DIR/requirements-dev.txt"
# Set execute permissions on manage.py as they get lost if we build from a zip file # Set execute permissions on manage.py as they get lost if we build from a zip file
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment