Skip to content

Commit

Permalink
Added yarn to travis
Browse files Browse the repository at this point in the history
  • Loading branch information
gtalarico committed Aug 28, 2018
1 parent 3589856 commit cbd0eb4
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,17 @@ branches:
- master
- dev/main
script:
- pytest --cov=app/api --cov-report=xml
- pytest --cov=app --cov-report=xml
install:
- "pip install --upgrade pip"
- "pip install pipenv"
- "pipenv install --dev"
- "pip install codecov"
after_success:
- codecov
cache: yarn
before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.9.4
- export PATH="$HOME/.yarn/bin:$PATH"
- yarn install
- yarn build

0 comments on commit cbd0eb4

Please sign in to comment.