Skip to content

Commit

Permalink
Documentation seed
Browse files Browse the repository at this point in the history
  • Loading branch information
Sterling Paramore committed Mar 27, 2018
1 parent 9af2a63 commit faf312c
Show file tree
Hide file tree
Showing 31 changed files with 1,321 additions and 609 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "requirements.txt" }}
- v1-dependencies-{{ checksum "requirements/all.txt" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-

Expand All @@ -44,12 +44,12 @@ jobs:
command: |
python3 -m venv venv
. venv/bin/activate
pip install -r requirements.txt
pip install -r requirements/all.txt
- save_cache:
paths:
- ./venv
key: v1-dependencies-{{ checksum "requirements.txt" }}
key: v1-dependencies-{{ checksum "requirements/all.txt" }}

#TODO: Make spark tests run on circle
- run:
Expand Down
2 changes: 1 addition & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
!pemi
!tests
!tasks.py
!requirements.*
!requirements
!docker
Loading

0 comments on commit faf312c

Please sign in to comment.