diff --git a/.circleci/config.yml b/.circleci/config.yml index 8671369227..c770f6eaa1 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -6,15 +6,13 @@ jobs: steps: - checkout - run: mkdir test-reports - - restore_cache: - key: deps1-{{ .Branch }}-{{ checksum "gradio.egg-info/requires.txt" }} - run: name: Install Python deps in a venv command: | python3 -m venv venv . venv/bin/activate pip install --upgrade pip - python3 gradio/setup.py install + python3 setup.py install pip install selenium==4.0.0a6.post2 - run: command: | diff --git a/.gitignore b/.gitignore index 08e904af55..5eb67896e6 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,7 @@ venv dist/ .eggs/ -*.egg-info/ +*.egg-info *.pyc staticfiles .env