Merge branch 'master' of github.com:gradio-app/gradio

This commit is contained in:
Abubakar Abid 2021-02-19 16:37:31 -06:00
commit 428d571328
2 changed files with 3 additions and 2 deletions

View File

@ -13,6 +13,7 @@ jobs:
command: |
python3 -m venv venv
. venv/bin/activate
pip install --upgrade pip
pip install -r gradio.egg-info/requires.txt
pip install selenium==4.0.0a6.post2
- save_cache:
@ -30,4 +31,4 @@ jobs:
path: /home/circleci/project/test/tmp
destination: screenshots
- store_test_results:
path: test-reports/
path: test-reports/

View File

@ -66,6 +66,6 @@ def readme_to_html(article):
response = requests.get(article)
if response.status_code == requests.codes.ok:
article = response.text
except requests.exceptions.MissingSchema:
except requests.exceptions.RequestException:
pass
return article