Skip to content

Commit

Permalink
[docs] Update readme with setup instructions for tests.
Browse files Browse the repository at this point in the history
Make it clear that devs have to run setup before running tests.

Fixes #3923
  • Loading branch information
wittrock committed Aug 23, 2024
1 parent 001c29a commit 1941cea
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ Add datacommonsorg/website repo as a remote:
git remote add dc https://github.com/datacommonsorg/website.git
```

Run the prerequisite steps in the [developer guide](docs/developer_guide.md).

Every time when you want to send a Pull Request, do the following steps:

```shell
Expand All @@ -54,7 +56,8 @@ Wait for approval of the Pull Request and merge the change.

### Local Development

Check steps in [developer guide](docs/developer_guide.md)
Check steps in [developer guide](docs/developer_guide.md) for more detailed
instructions.

## License

Expand Down
2 changes: 1 addition & 1 deletion server/lib/nl/common/bad_words.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ class BannedWords:
# Loads a list of bad words from a text file.
#
def load_bad_words() -> BannedWords:
local_file = gcs.maybe_download(BAD_WORDS_PATH)
local_file = gcs.maybe_download(BAD_WORDS_PATH, use_anonymous_client=True)
return load_bad_words_file(local_file)


Expand Down

0 comments on commit 1941cea

Please sign in to comment.