We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ada1ab0 commit 1cfaefeCopy full SHA for 1cfaefe
.gitignore
@@ -57,7 +57,8 @@ coverage.xml
57
*sponge_log.xml
58
59
# System test environment variables.
60
-system_tests/local_test_setup
+**/system_tests/local_test_setup
61
+**/system_tests/data
62
63
# Make sure a generated file isn't accidentally committed.
64
pylintrc
packages/google-auth/system_tests/noxfile.py
@@ -94,7 +94,7 @@ def _provision_kokoro_secrets():
94
capture_output=True,
95
)
96
# Rename to use underscores as per test conventions
97
- (DATA_DIR / src_name).replace(DATA_DIR / dest_name)
+ (pathlib.Path(DATA_DIR) / src_name).replace(pathlib.Path(DATA_DIR) / dest_name)
98
99
100
_provision_kokoro_secrets()
0 commit comments