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.
1 parent 7197eea commit dafd8e7Copy full SHA for dafd8e7
setup.py
@@ -27,8 +27,10 @@
27
is_rtd = os.environ["READTHEDOCS"]
28
if "APPVEYOR" in os.environ:
29
is_appveyor = os.environ["APPVEYOR"]
30
-if "TF_BUILD" in os.environ:
31
- is_azure = os.environ["TF_BUILD"]
+if "System.TeamProjectId" in os.environ:
+ is_azure = True
32
+print("System.TeamProjectId" in os.environ)
33
+print("TF_BUILD" in os.environ)
34
35
# Only include the installation dependencies if we are not running on RTD or AppVeyor
36
if not is_rtd and not is_appveyor and not is_azure:
0 commit comments