Compare commits

...
Author SHA1 Message Date
Karl WeinmeisterandGitHub d9a1b4fc3b Merge branch 'main' into fix_is_testing 2022-03-18 16:43:12 -05:00
Andrew FerlitschandGitHub b1de8caab3 fix: use os.getenv() 2022-03-18 09:57:54 -07:00
Andrew FerlitschandGitHub 76c3ca1968 fix: use os.getenv() 2022-03-18 09:56:24 -07:00
Andrew FerlitschandGitHub 6d62d238dd fix: use os.getenv() 2022-03-18 09:55:21 -07:00
Andrew FerlitschandGitHub cb1959a83d fix: use os.getenv() 2022-03-18 09:52:48 -07:00
Andrew FerlitschandGitHub 93665056ec fix: use os.getenv() 2022-03-18 09:48:26 -07:00
5 changed files with 6 additions and 6 deletions
@@ -184,7 +184,7 @@
},
"outputs": [],
"source": [
"if os.environ[\"IS_TESTING\"]:\n",
"if os.getenv(\"IS_TESTING\"):\n",
" ! pip3 install --upgrade tensorflow $USER_FLAG"
]
},
@@ -1544,7 +1544,7 @@
},
"outputs": [],
"source": [
"if not os.environ[\"IS_TESTING\"]:\n",
"if not os.getenv(\"IS_TESTING\"):\n",
" batch_predict_job.wait()"
]
},
@@ -1572,7 +1572,7 @@
},
"outputs": [],
"source": [
"if not os.environ[\"IS_TESTING\"]:\n",
"if not os.getenv(\"IS_TESTING\"):\n",
" import tensorflow as tf\n",
"\n",
" bp_iter_outputs = batch_predict_job.iter_outputs()\n",
@@ -169,7 +169,7 @@
},
"outputs": [],
"source": [
"if os.environ[\"IS_TESTING\"]:\n",
"if os.getenv(\"IS_TESTING\"):\n",
" ! pip3 install --upgrade tensorflow $USER_FLAG"
]
},
@@ -171,7 +171,7 @@
},
"outputs": [],
"source": [
"if os.environ[\"IS_TESTING\"]:\n",
"if os.getenv(\"IS_TESTING\"):\n",
" ! pip3 install --upgrade tensorflow $USER_FLAG"
]
},
@@ -169,7 +169,7 @@
},
"outputs": [],
"source": [
"if os.environ[\"IS_TESTING\"]:\n",
"if os.getenv(\"IS_TESTING\"):\n",
" ! pip3 install --upgrade tensorflow $USER_FLAG"
]
},