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 97280a0 + 654229d commit 49e49d3Copy full SHA for 49e49d3
2 files changed
MANIFEST.in
@@ -21,10 +21,8 @@ exclude .appveyor.yml
21
exclude .coveragerc
22
exclude .editorconfig
23
exclude .readthedocs.yml
24
-exclude azure-pipelines.yml
25
exclude codecov.yml
26
global-exclude .git*
27
global-exclude *.pyc
28
global-exclude *.so
29
-prune .azure-pipelines
30
prune .ci
Tests/helper.py
@@ -272,12 +272,8 @@ def on_github_actions():
272
273
274
def on_ci():
275
- # Travis and AppVeyor have "CI"
276
- # Azure Pipelines has "TF_BUILD"
277
- # GitHub Actions has "GITHUB_ACTIONS"
278
- return (
279
- "CI" in os.environ or "TF_BUILD" in os.environ or "GITHUB_ACTIONS" in os.environ
280
- )
+ # GitHub Actions, Travis and AppVeyor have "CI"
+ return "CI" in os.environ
281
282
283
def is_big_endian():
0 commit comments