Skip to content

Commit

Permalink
chore: update goldens
Browse files Browse the repository at this point in the history
  • Loading branch information
busunkim96 committed Jun 8, 2021
1 parent 9f40f53 commit 3467591
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
8 changes: 7 additions & 1 deletion DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,13 @@ Execute unit tests by running one of the sessions prefixed with `unit-`.
bazel test //tests/integration:asset
```

- Update goldens files. This overwrites the golden files in
- Run integration tests for all APIs.

```sh
bazel test //tests/integration:all
```

- Update all goldens files. This overwrites the golden files in
`tests/integration/goldens/`.

```sh
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/goldens/asset/noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def cover(session):
@nox.session(python=['3.6', '3.7'])
def mypy(session):
"""Run the type checker."""
session.install('mypy')
session.install('mypy', 'types-pkg_resources')
session.install('.')
session.run(
'mypy',
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/goldens/credentials/noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def cover(session):
@nox.session(python=['3.6', '3.7'])
def mypy(session):
"""Run the type checker."""
session.install('mypy')
session.install('mypy', 'types-pkg_resources')
session.install('.')
session.run(
'mypy',
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/goldens/logging/noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def cover(session):
@nox.session(python=['3.6', '3.7'])
def mypy(session):
"""Run the type checker."""
session.install('mypy')
session.install('mypy', 'types-pkg_resources')
session.install('.')
session.run(
'mypy',
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/goldens/redis/noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def cover(session):
@nox.session(python=['3.6', '3.7'])
def mypy(session):
"""Run the type checker."""
session.install('mypy')
session.install('mypy', 'types-pkg_resources')
session.install('.')
session.run(
'mypy',
Expand Down

0 comments on commit 3467591

Please sign in to comment.