We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4dcc361 + a80acf4 commit f4e151eCopy full SHA for f4e151e
tests/testthat/helper-vcr.R
@@ -1,6 +1,12 @@
1
library("vcr") # *Required* as vcr is set up on loading
2
invisible(vcr::vcr_configure(
3
filter_sensitive_data = list("<<<redacted>>>" = Sys.getenv('EBIRD_KEY')),
4
+ # Remove sensitive information about tester from cassettes
5
+ filter_sensitive_data_regex = list(
6
+ '"ip": "redacted"' = '"ip": "[0-9.]+"',
7
+ '"hostname": "redacted"' = '"hostname": "[^"]*"',
8
+ '"org": "redacted"' = '"org": "[^"]*"'
9
+ ),
10
dir = vcr::vcr_test_path("fixtures")
11
))
12
vcr::check_cassette_names()
0 commit comments