From d0edd2e7f08861e3c08000213235aeff967ee67e Mon Sep 17 00:00:00 2001 From: Ali Abid Date: Wed, 11 Aug 2021 18:39:32 +0000 Subject: [PATCH] make gitignore changes and test fix --- .circleci/config.yml | 4 +--- .gitignore | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) 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