Skip to content

disable testing the stable channel on travis #1291

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Dec 14, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ language: dart
sudo: false
dart:
- dev
- stable
# Disabled - re-enable once dev goes stable (see #1290).
# - stable
env:
- GEN_SDK_DOCS=true
- GEN_SDK_DOCS=false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ <h5><a href="fake/ExtraSpecialList-class.html">ExtraSpecialList</a></h5>
<code>element</code>, unless it has a more efficient way to find an element
equal to <code>element</code>.</p>
<p>The equality used to determine whether <code>element</code> is equal to an element of
the iterable defaults to the <code>Object.operator==</code> of the element.</p>
the iterable defaults to the <code>Object.==</code> of the element.</p>
<p>Some types of iterable may have a different equality used for its elements.
For example, a <code>Set</code> may have a custom equality
(see <code>Set.identical</code>) that its <code>contains</code> uses.
Expand Down
2 changes: 1 addition & 1 deletion testing/test_package_docs/fake/SpecialList/contains.html
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ <h5><a href="fake/SpecialList-class.html">SpecialList</a></h5>
<code>element</code>, unless it has a more efficient way to find an element
equal to <code>element</code>.</p>
<p>The equality used to determine whether <code>element</code> is equal to an element of
the iterable defaults to the <code>Object.operator==</code> of the element.</p>
the iterable defaults to the <code>Object.==</code> of the element.</p>
<p>Some types of iterable may have a different equality used for its elements.
For example, a <code>Set</code> may have a custom equality
(see <code>Set.identical</code>) that its <code>contains</code> uses.
Expand Down