Skip to content

Commit

Permalink
Merge branch 'fr_info_del' of https://www.github.com/activeloopai/hub
Browse files Browse the repository at this point in the history
…into fr_info_del
  • Loading branch information
farizrahman4u committed Jul 23, 2021
2 parents 8f59282 + ec733a1 commit 2b7a225
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
8 changes: 5 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -166,19 +166,21 @@ commands:
steps:
- run:
name: "Running tests - Windows"
environment:
BUGGER_OFF: "true"
command: |
$Env:GOOGLE_APPLICATION_CREDENTIALS = $Env:CI_GCS_PATH
setx /m GOOGLE_APPLICATION_CREDENTIALS "$Env:GOOGLE_APPLICATION_CREDENTIALS"
activeloop reporting --off
python3 -m pytest --cov-report=xml --cov=./ --local --s3 --hub-cloud
- when:
condition: << parameters.unix-like >>
steps:
- run:
name: "Running tests - Unix"
environment:
BUGGER_OFF: "true"
command: |
export GOOGLE_APPLICATION_CREDENTIALS=$HOME/.secrets/gcs.json
activeloop reporting --off
python3 -m pytest --cov-report=xml --cov=./ --local --s3 --hub-cloud
parallelism: 10
Expand Down Expand Up @@ -323,4 +325,4 @@ jobs:
- conda-install
- conda-setup
- conda-build
- slack-status
- slack-status
5 changes: 1 addition & 4 deletions hub/client/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,10 +195,7 @@ def create_dataset_entry(self, username, dataset_name, meta, public=True):
)

if response.status_code == 200:
logger.info(
"Your Hub dataset has been successfully created!"
+ f"\nIt is available at {self.endpoint()}/datasets/explore?tag={tag}"
)
logger.info("Your Hub dataset has been successfully created!")
if public is False:
logger.info("The dataset is private so make sure you are logged in!")

Expand Down
3 changes: 3 additions & 0 deletions pdoc/templates/config.mako
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,7 @@
list_class_variables_in_index = True
sort_identifiers = True
show_type_annotations = False
# see: https://lunrjs.com/guides/searching.html#fuzzy-matches
lunr_search = {'fuzziness': 1, 'index_docstrings': True}
%>

0 comments on commit 2b7a225

Please sign in to comment.