update config file

This commit is contained in:
dawoodkhan82 2019-05-30 01:40:10 -07:00
parent fc1ce84e8c
commit a49c4c965d

View File

@ -7,7 +7,7 @@ jobs:
- checkout
- run: mkdir test-reports
- restore_cache:
key: deps1-{{ .Branch }}-{{ checksum "requirements/dev.txt" }}
key: deps1-{{ .Branch }}-{{ checksum "gradio.egg-info/requires.txt" }}
- run:
name: Install Python deps in a venv
command: |
@ -15,7 +15,7 @@ jobs:
. venv/bin/activate
pip install -r requirements/dev.txt
- save_cache:
key: deps1-{{ .Branch }}-{{ checksum "requirements/dev.txt" }}
key: deps1-{{ .Branch }}-{{ checksum "gradio.egg-info/requires.txt" }}
paths:
- "venv"
- run: