Fixed: Don't fail build on test failure (#173)

* Fixed: Don't fail build on test failure

This sets Appveyor up to use the original build.sh and test.sh scripts.
Enables tests for Travis
Add frontend linting checks to Appveyor builds
Add Failed Tests message to Appveyor builds
Fix windows installer naming
Fix a few UI issues causing eslint and stylelint to fail

* fixup! forgot one ui fix.

* fixup! Inno doesn't like appveyor appending string to pr version

* fixup! It's too late, my brain is mush
This commit is contained in:
Qstick 2017-12-31 13:53:16 -05:00 committed by GitHub
commit 99d0421ba7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
15 changed files with 169 additions and 607 deletions

View file

@ -1,31 +1,31 @@
.title {
composes: cell from 'Components/Table/Cells/TableRowCell.css';
composes: cell from 'Components/Table/Cells/TableRowCell.css';
white-space: nowrap;
white-space: nowrap;
}
.monitored {
composes: cell from 'Components/Table/Cells/TableRowCell.css';
composes: cell from 'Components/Table/Cells/TableRowCell.css';
width: 42px;
width: 42px;
}
.trackNumber {
composes: cell from 'Components/Table/Cells/TableRowCell.css';
composes: cell from 'Components/Table/Cells/TableRowCell.css';
width: 50px;
width: 50px;
}
.audio {
composes: cell from 'Components/Table/Cells/TableRowCell.css';
composes: cell from 'Components/Table/Cells/TableRowCell.css';
width: 200px;
width: 200px;
}
.language,
.video,
.status {
composes: cell from 'Components/Table/Cells/TableRowCell.css';
composes: cell from 'Components/Table/Cells/TableRowCell.css';
width: 100px;
}
width: 100px;
}

View file

@ -23,9 +23,9 @@
}
.albumCount {
font-size: 18px;
font-style: italic;
color: #8895aa;
font-style: italic;
font-size: 18px;
}
.episodeCountContainer {

View file

@ -73,6 +73,7 @@
.optionsModalScroller {
composes: scroller from 'Components/Scroller/Scroller.css';
border: 1px solid $inputBorderColor;
border-radius: 4px;
background-color: $white;

View file

@ -1,11 +0,0 @@
.form {
}
.error {
color: $dangerColor;
}
.warning {
color: $warningColor;
}

View file

@ -111,13 +111,13 @@ class QualityDefinition extends Component {
<div className={styles.sizes}>
<div>
<Label title={"Minimum size for a 20 minute EP"} kind={kinds.WARNING}>{minTwenty}</Label>
<Label title={"Minimum size for a 45 minute LP"} kind={kinds.INFO}>{minFortyFive}</Label>
<Label title={'Minimum size for a 20 minute EP'} kind={kinds.WARNING}>{minTwenty}</Label>
<Label title={'Minimum size for a 45 minute LP'} kind={kinds.INFO}>{minFortyFive}</Label>
</div>
<div>
<Label title={"Maximum size for a 20 minute EP"} kind={kinds.WARNING}>{maxTwenty}</Label>
<Label title={"Maximum size for a 45 minute LP"} kind={kinds.INFO}>{maxFortyFive}</Label>
<Label title={'Maximum size for a 20 minute EP'} kind={kinds.WARNING}>{maxTwenty}</Label>
<Label title={'Maximum size for a 45 minute LP'} kind={kinds.INFO}>{maxFortyFive}</Label>
</div>
</div>
</div>

View file

@ -10,7 +10,7 @@
* occur.
*/
@define-mixin truncate {
@define-mixin truncate {
overflow: hidden !important;
max-width: 100%; /* 1 */
text-overflow: ellipsis !important;