Skip to content

Commit d53cb2c

Browse files
committed
update goldens
1 parent c66a9d6 commit d53cb2c

File tree

7 files changed

+35
-7
lines changed

7 files changed

+35
-7
lines changed

tests/integration/goldens/asset/noxfile.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,11 @@
2626
BLACK_VERSION = "black[jupyter]==23.7.0"
2727
ISORT_VERSION = "isort==5.11.0"
2828

29-
LINT_PATHS = ["docs", "google", "samples", "tests", "noxfile.py", "setup.py"]
29+
LINT_PATHS = ["docs", "google", "tests", "noxfile.py", "setup.py"]
30+
31+
# Add samples to the list of directories to format if the directory exists.
32+
if os.path.isdir("samples"):
33+
LINT_PATHS.append("samples")
3034

3135
ALL_PYTHON = [
3236
"3.7",

tests/integration/goldens/credentials/noxfile.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,11 @@
2626
BLACK_VERSION = "black[jupyter]==23.7.0"
2727
ISORT_VERSION = "isort==5.11.0"
2828

29-
LINT_PATHS = ["docs", "google", "samples", "tests", "noxfile.py", "setup.py"]
29+
LINT_PATHS = ["docs", "google", "tests", "noxfile.py", "setup.py"]
30+
31+
# Add samples to the list of directories to format if the directory exists.
32+
if os.path.isdir("samples"):
33+
LINT_PATHS.append("samples")
3034

3135
ALL_PYTHON = [
3236
"3.7",

tests/integration/goldens/eventarc/noxfile.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,11 @@
2626
BLACK_VERSION = "black[jupyter]==23.7.0"
2727
ISORT_VERSION = "isort==5.11.0"
2828

29-
LINT_PATHS = ["docs", "google", "samples", "tests", "noxfile.py", "setup.py"]
29+
LINT_PATHS = ["docs", "google", "tests", "noxfile.py", "setup.py"]
30+
31+
# Add samples to the list of directories to format if the directory exists.
32+
if os.path.isdir("samples"):
33+
LINT_PATHS.append("samples")
3034

3135
ALL_PYTHON = [
3236
"3.7",

tests/integration/goldens/logging/noxfile.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,11 @@
2626
BLACK_VERSION = "black[jupyter]==23.7.0"
2727
ISORT_VERSION = "isort==5.11.0"
2828

29-
LINT_PATHS = ["docs", "google", "samples", "tests", "noxfile.py", "setup.py"]
29+
LINT_PATHS = ["docs", "google", "tests", "noxfile.py", "setup.py"]
30+
31+
# Add samples to the list of directories to format if the directory exists.
32+
if os.path.isdir("samples"):
33+
LINT_PATHS.append("samples")
3034

3135
ALL_PYTHON = [
3236
"3.7",

tests/integration/goldens/logging_internal/noxfile.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,11 @@
2626
BLACK_VERSION = "black[jupyter]==23.7.0"
2727
ISORT_VERSION = "isort==5.11.0"
2828

29-
LINT_PATHS = ["docs", "google", "samples", "tests", "noxfile.py", "setup.py"]
29+
LINT_PATHS = ["docs", "google", "tests", "noxfile.py", "setup.py"]
30+
31+
# Add samples to the list of directories to format if the directory exists.
32+
if os.path.isdir("samples"):
33+
LINT_PATHS.append("samples")
3034

3135
ALL_PYTHON = [
3236
"3.7",

tests/integration/goldens/redis/noxfile.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,11 @@
2626
BLACK_VERSION = "black[jupyter]==23.7.0"
2727
ISORT_VERSION = "isort==5.11.0"
2828

29-
LINT_PATHS = ["docs", "google", "samples", "tests", "noxfile.py", "setup.py"]
29+
LINT_PATHS = ["docs", "google", "tests", "noxfile.py", "setup.py"]
30+
31+
# Add samples to the list of directories to format if the directory exists.
32+
if os.path.isdir("samples"):
33+
LINT_PATHS.append("samples")
3034

3135
ALL_PYTHON = [
3236
"3.7",

tests/integration/goldens/redis_selective/noxfile.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,11 @@
2626
BLACK_VERSION = "black[jupyter]==23.7.0"
2727
ISORT_VERSION = "isort==5.11.0"
2828

29-
LINT_PATHS = ["docs", "google", "samples", "tests", "noxfile.py", "setup.py"]
29+
LINT_PATHS = ["docs", "google", "tests", "noxfile.py", "setup.py"]
30+
31+
# Add samples to the list of directories to format if the directory exists.
32+
if os.path.isdir("samples"):
33+
LINT_PATHS.append("samples")
3034

3135
ALL_PYTHON = [
3236
"3.7",

0 commit comments

Comments
 (0)