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
parent 422b82da3c
commit 99d0421ba7
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;