Skip to content

Commit

Permalink
Fix CI Tests (#227)
Browse files Browse the repository at this point in the history
* Fix CI tests

* Fixed filename casing issues
  • Loading branch information
amilajack authored Jul 8, 2017
1 parent 65f5ff8 commit 3cc6f55
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ before_script:
- sleep 3

script:
- npm run lint
- npm run test
- npm run package
- npm run test-e2e
2 changes: 1 addition & 1 deletion app/api/torrents/BaseTorrentProvider.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/* eslint prefer-template: 0 */
import cache from 'lru-cache';
import url from 'url';
import TheMovieDbMetadataProvider from '../metadata/TheMovieDBMetadataProvider';
import TheMovieDbMetadataProvider from '../metadata/TheMovieDbMetadataProvider';
import type { torrentType } from './TorrentProviderInterface';

export const providerCache = cache({
Expand Down
6 changes: 2 additions & 4 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ environment:

cache:
- "%LOCALAPPDATA%/Yarn"
- node_modules -> package.json
- app/node_modules -> app/package.json
- node_modules -> yarn.lock
- app/node_modules -> app/yarn.lock

matrix:
fast_finish: true
Expand All @@ -27,8 +27,6 @@ install:
- cd app && yarn

test_script:
- node --version
- npm run lint
- npm run test
- npm run package
- npm run test-e2e

0 comments on commit 3cc6f55

Please sign in to comment.