You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently whether long tests are skipped or not is handled by a get_skip_long_tests() in zzz.R that is hard-coded to return TRUE. Might be better to control this with an environment variable, e.g., NPN_RUN_LONG_TESTS and have skip_long_tests() return !Sys.getenv("NPN_RUN_LONG_TESTS")
The text was updated successfully, but these errors were encountered:
Should also explore the possibility that these tests don't need to be downloading so much data. The point is to test the R functions, not the API or the data—maybe tests can be pared down to download a much smaller slice of data?
Currently whether long tests are skipped or not is handled by a
get_skip_long_tests()
in zzz.R that is hard-coded to returnTRUE
. Might be better to control this with an environment variable, e.g.,NPN_RUN_LONG_TESTS
and haveskip_long_tests()
return!Sys.getenv("NPN_RUN_LONG_TESTS")
The text was updated successfully, but these errors were encountered: